diff options
-rw-r--r-- | desktop-widgets/mapwidget.cpp | 5 | ||||
-rw-r--r-- | desktop-widgets/mapwidget.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/desktop-widgets/mapwidget.cpp b/desktop-widgets/mapwidget.cpp index e48cbf2d8..145946152 100644 --- a/desktop-widgets/mapwidget.cpp +++ b/desktop-widgets/mapwidget.cpp @@ -52,6 +52,11 @@ void MapWidget::endGetDiveCoordinates() // TODO;
}
+void MapWidget::prepareForGetDiveCoordinates()
+{
+ // TODO;
+}
+
MapWidget::~MapWidget()
{
m_instance = NULL;
diff --git a/desktop-widgets/mapwidget.h b/desktop-widgets/mapwidget.h index 0374fa203..fccb96e7b 100644 --- a/desktop-widgets/mapwidget.h +++ b/desktop-widgets/mapwidget.h @@ -28,6 +28,7 @@ public slots: void centerOnIndex(const QModelIndex& idx);
void endGetDiveCoordinates();
void repopulateLabels();
+ void prepareForGetDiveCoordinates();
private:
static MapWidget *m_instance;
|