summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mobile-widgets/qmlmapwidgethelper.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/mobile-widgets/qmlmapwidgethelper.h b/mobile-widgets/qmlmapwidgethelper.h
index c7e532c3c..e26718b1b 100644
--- a/mobile-widgets/qmlmapwidgethelper.h
+++ b/mobile-widgets/qmlmapwidgethelper.h
@@ -6,11 +6,15 @@
class MapWidgetHelper : public QObject {
Q_OBJECT
+ Q_PROPERTY(QObject *map MEMBER m_map)
public:
explicit MapWidgetHelper(QObject *parent = NULL);
void test();
+
+private:
+ QObject *m_map;
};
#endif