1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-03-17 12:07:47 +01:00

Compare commits

..

No commits in common. "c1235a953ec88b68e73ed25ff600a405f2d8394f" and "0531389cd800c02ae6556e059700a76366fcf0e8" have entirely different histories.

8 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
version: 13.10.{build} version: 13.9.{build}
configuration: configuration:
- Release - Release

View File

@ -3,7 +3,7 @@ unix:!macx:!android {
} else { } else {
TARGET = GPXSee TARGET = GPXSee
} }
VERSION = 13.10 VERSION = 13.9
QT += core \ QT += core \

View File

@ -37,7 +37,7 @@ Unicode true
; The name of the installer ; The name of the installer
Name "GPXSee" Name "GPXSee"
; Program version ; Program version
!define VERSION "13.10" !define VERSION "13.9"
; The file to write ; The file to write
OutFile "GPXSee-${VERSION}_x64.exe" OutFile "GPXSee-${VERSION}_x64.exe"

View File

@ -14,7 +14,7 @@ public:
QString name() const {return QString();} QString name() const {return QString();}
QRectF bounds(); QRectF bounds();
RectC llBounds() {return OSM::BOUNDS;} RectC llBounds(const Projection &) {return OSM::BOUNDS;}
qreal resolution(const QRectF &rect); qreal resolution(const QRectF &rect);
int zoom() const {return _zoom;} int zoom() const {return _zoom;}

View File

@ -19,7 +19,7 @@ public:
QString name() const {return _name;} QString name() const {return _name;}
QRectF bounds(); QRectF bounds();
RectC llBounds() {return _bounds;} RectC llBounds(const Projection &) {return _bounds;}
qreal resolution(const QRectF &rect); qreal resolution(const QRectF &rect);
int zoom() const {return _zoom;} int zoom() const {return _zoom;}

View File

@ -20,7 +20,7 @@ public:
QString name() const {return _name;} QString name() const {return _name;}
QRectF bounds(); QRectF bounds();
RectC llBounds() {return _wms->bbox();} RectC llBounds(const Projection &) {return _wms->bbox();}
int zoom() const {return _zoom;} int zoom() const {return _zoom;}
void setZoom(int zoom); void setZoom(int zoom);

View File

@ -106,7 +106,7 @@ QRectF WMTSMap::bounds()
return lb.isValid() ? lb & tb : tb; return lb.isValid() ? lb & tb : tb;
} }
RectC WMTSMap::llBounds() RectC WMTSMap::llBounds(const Projection &)
{ {
if (_wmts->bbox().isValid()) if (_wmts->bbox().isValid())
return _wmts->bbox(); return _wmts->bbox();

View File

@ -20,7 +20,7 @@ public:
QString name() const {return _name;} QString name() const {return _name;}
QRectF bounds(); QRectF bounds();
RectC llBounds(); RectC llBounds(const Projection &);
int zoom() const {return _zoom;} int zoom() const {return _zoom;}
void setZoom(int zoom); void setZoom(int zoom);