Skip to content
Snippets Groups Projects
Commit 6a9861ed authored by Martin Zenzes's avatar Martin Zenzes
Browse files

qgv: fix -Wreordering

parent 40eb98eb
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ License along with this library.
#include <QDebug>
#include <QPainter>
QGVEdge::QGVEdge(QGVEdgePrivate *edge, QGVScene *scene) : _edge(edge), _scene(scene)
QGVEdge::QGVEdge(QGVEdgePrivate *edge, QGVScene *scene) : _scene(scene), _edge(edge)
{
setFlag(QGraphicsItem::ItemIsSelectable, true);
}
......
......@@ -23,7 +23,7 @@ License along with this library.
#include <QDebug>
#include <QPainter>
QGVNode::QGVNode(QGVNodePrivate *node, QGVScene *scene): _node(node), _scene(scene)
QGVNode::QGVNode(QGVNodePrivate *node, QGVScene *scene): _scene(scene), _node(node)
{
setFlag(QGraphicsItem::ItemIsSelectable, true);
}
......
......@@ -24,7 +24,7 @@ License along with this library.
#include <QDebug>
#include <QPainter>
QGVSubGraph::QGVSubGraph(QGVGraphPrivate *subGraph, QGVScene *scene): _sgraph(subGraph), _scene(scene)
QGVSubGraph::QGVSubGraph(QGVGraphPrivate *subGraph, QGVScene *scene): _scene(scene), _sgraph(subGraph)
{
//setFlag(QGraphicsItem::ItemIsSelectable, true);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment