Browse Source

QGCMapEngine: Add missing const in member functions

Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
QGC4.4
Patrick José Pereira 4 years ago committed by Don Gagne
parent
commit
e264f554cc
  1. 4
      src/QtLocationPlugin/QGCMapEngine.h

4
src/QtLocationPlugin/QGCMapEngine.h

@ -50,8 +50,8 @@ public: @@ -50,8 +50,8 @@ public:
const QString getCachePath () { return _cachePath; }
const QString getCacheFilename () { return _cacheFile; }
void testInternet ();
bool wasCacheReset () { return _cacheWasReset; }
bool isInternetActive () { return _isInternetActive; }
bool wasCacheReset () const{ return _cacheWasReset; }
bool isInternetActive () const{ return _isInternetActive; }
UrlFactory* urlFactory () { return _urlFactory; }

Loading…
Cancel
Save