1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-07-03 06:19:15 +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:
- Release

View File

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

View File

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

View File

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

View File

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