Skip to content

Commit ce5ed44

Browse files
committedOct 26, 2015
Add some missing Q_OBJECT macros
1 parent 9d4e995 commit ce5ed44

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed
 

‎src/plugins/geometry_checker/checks/qgsgeometrycheck.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ class QgsGeometryCheckPrecision
4141

4242
class QgsGeometryCheck : public QObject
4343
{
44+
Q_OBJECT
45+
4446
public:
4547
enum ChangeWhat { ChangeFeature, ChangePart, ChangeRing, ChangeNode };
4648
enum ChangeType { ChangeAdded, ChangeRemoved, ChangeChanged };

‎src/plugins/geometry_checker/qgsgeometrycheckerplugin.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ class QgsGeometryCheckerDialog;
2727

2828
class QgsGeometryCheckerPlugin : public QObject, public QgisPlugin
2929
{
30+
Q_OBJECT
31+
3032
public:
3133
explicit QgsGeometryCheckerPlugin( QgisInterface* iface );
3234
void initGui() override;

‎src/plugins/geometry_snapper/qgsgeometrysnapperplugin.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ static const QString sPluginIcon = ":/geometrysnapper/icons/geometrysnapper.png"
3333

3434
class QgsGeometrySnapperPlugin : public QObject, public QgisPlugin
3535
{
36+
Q_OBJECT
37+
3638
public:
3739
explicit QgsGeometrySnapperPlugin( QgisInterface* iface );
3840
void initGui() override;

0 commit comments

Comments
 (0)
Please sign in to comment.