1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-07-05 15:12:51 +02:00

Compare commits

...

2 Commits
7.26 ... 7.27

Author SHA1 Message Date
d94938261a Version++ 2020-03-28 19:50:39 +01:00
d5fc06d9d1 Fixed remaining qWarning() format warning 2020-03-28 19:15:03 +01:00
5 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
version: 7.26.{build} version: 7.27.{build}
configuration: configuration:
- Release - Release

View File

@ -3,7 +3,7 @@ unix:!macx {
} else { } else {
TARGET = GPXSee TARGET = GPXSee
} }
VERSION = 7.26 VERSION = 7.27
QT += core \ QT += core \
gui \ gui \

View File

@ -7,7 +7,7 @@
; The name of the installer ; The name of the installer
Name "GPXSee" Name "GPXSee"
; Program version ; Program version
!define VERSION "7.26" !define VERSION "7.27"
; The file to write ; The file to write
OutFile "GPXSee-${VERSION}.exe" OutFile "GPXSee-${VERSION}.exe"

View File

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

View File

@ -63,8 +63,8 @@ void POI::loadDir(const QString &path)
loadDir(fi.absoluteFilePath()); loadDir(fi.absoluteFilePath());
else else
if (!loadFile(fi.absoluteFilePath())) if (!loadFile(fi.absoluteFilePath()))
qWarning(qPrintable(fi.absoluteFilePath() + ": " qWarning("%s: %s", qPrintable(fi.absoluteFilePath()),
+ _errorString)); qPrintable(_errorString));
} }
} }