4243fcb915 ("Dont set coordinates when two or more dives are selected")
Changed how the prototypes in GlobeGPS looks. This aligns NO_MARBLE
version of GlobeGPS with that.Signed-off-by: Anton Lundin <[email protected]> --- qt-ui/globe.cpp | 2 +- qt-ui/globe.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/qt-ui/globe.cpp b/qt-ui/globe.cpp index 3a27e38..9f66e2b 100644 --- a/qt-ui/globe.cpp +++ b/qt-ui/globe.cpp @@ -345,6 +345,6 @@ GlobeGPS::GlobeGPS(QWidget* parent) { setText("MARBLE DISABLED AT BUILD TIME"); void GlobeGPS::repopulateLabels() {} void GlobeGPS::centerOn(dive* dive) {} bool GlobeGPS::eventFilter(QObject *obj, QEvent *ev) {} -void GlobeGPS::prepareForGetDiveCoordinates() {} +void GlobeGPS::prepareForGetDiveCoordinates(struct dive *dive) {} void GlobeGPS::reload() {} #endif diff --git a/qt-ui/globe.h b/qt-ui/globe.h index 2a631fb..add04ed 100644 --- a/qt-ui/globe.h +++ b/qt-ui/globe.h @@ -57,7 +57,7 @@ public: void centerOn(struct dive* dive); bool eventFilter(QObject*, QEvent*); public slots: - void prepareForGetDiveCoordinates(); + void prepareForGetDiveCoordinates(struct dive *dive); }; #endif // NO_MARBLE -- 1.9.1 _______________________________________________ subsurface mailing list [email protected] http://lists.hohndel.org/cgi-bin/mailman/listinfo/subsurface
