Transform GlobeGPS in a static instance() class

This is needed to start easing the transition from the completely
wrong and bogus MainWindow::instance()->globe() calls. this is still
wrong, but with it I removed one level of indirection.
I did that now because I wanted to not taint the location management
when I use it to deal with the globe.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Tomaz Canabrava 2015-07-30 21:51:38 -03:00 committed by Dirk Hohndel
parent 9130ff8a97
commit 7efa924067
6 changed files with 20 additions and 21 deletions

View file

@ -21,7 +21,7 @@ class GlobeGPS : public MarbleWidget {
Q_OBJECT
public:
using MarbleWidget::centerOn;
GlobeGPS(QWidget *parent = 0);
static GlobeGPS *instance();
void reload();
bool eventFilter(QObject *, QEvent *);
@ -38,6 +38,7 @@ private:
bool needResetZoom;
bool editingDiveLocation;
bool doubleClick;
GlobeGPS(QWidget *parent = 0);
signals:
void coordinatesChanged();