Fix reorder warnings on linux

master
Adrian Doll 2017-02-16 09:22:13 +01:00 committed by addi
parent b65414e2b0
commit 49c4df26d8
1 changed files with 3 additions and 3 deletions

View File

@ -35,13 +35,13 @@ public:
explicit DrawMapFigure(const QString &str, QObject *parent = 0);
explicit DrawMapFigure(QColor color, QObject *parent = 0) :
color(color), QObject(parent) { }
QObject(parent), color(color) { }
explicit DrawMapFigure(QPoint point, QColor color, QObject *parent = 0) :
point(point), color(color), QObject(parent) {}
QObject(parent), point(point), color(color) {}
explicit DrawMapFigure(Geometry *geometry, QColor color, QObject *parent = 0) :
geometry(geometry), color(color), QObject(parent) { }
QObject(parent), geometry(geometry), color(color) { }
//DrawMapFigure(const DrawMapFigure &f) {}
bool requiresPoint(void) const;