summaryrefslogtreecommitdiff
path: root/src/selfupdater.cpp
diff options
context:
space:
mode:
authorSilarn <jrim@rimpo.org>2019-01-05 20:00:16 -0600
committerSilarn <jrim@rimpo.org>2019-01-05 20:00:16 -0600
commite35cdd6c89ea27dfb8f3ea1f918192514617a64d (patch)
treef35f50185df88c5104ca6c47133d07b2254202a3 /src/selfupdater.cpp
parent15e47114175d7dd86cd6e774aff1d7872e87a647 (diff)
parentf2c145b2fc9d6ffce838398e06f7aa583d05887d (diff)
Merge remote-tracking branch 'origin/Develop' into archive_conflicts_2
Diffstat (limited to 'src/selfupdater.cpp')
-rw-r--r--src/selfupdater.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/selfupdater.cpp b/src/selfupdater.cpp
index d26ca96c..cdcbc2f4 100644
--- a/src/selfupdater.cpp
+++ b/src/selfupdater.cpp
@@ -145,15 +145,15 @@ void SelfUpdater::testForUpdate()
if (newestVer > this->m_MOVersion) {
m_UpdateCandidate = newest;
qDebug("update available: %s -> %s",
- qPrintable(this->m_MOVersion.displayString()),
- qPrintable(newestVer.displayString()));
+ qUtf8Printable(this->m_MOVersion.displayString()),
+ qUtf8Printable(newestVer.displayString()));
emit updateAvailable();
} else if (newestVer < this->m_MOVersion) {
// this could happen if the user switches from using prereleases to
// stable builds. Should we downgrade?
qDebug("this version is newer than the newest installed one: %s -> %s",
- qPrintable(this->m_MOVersion.displayString()),
- qPrintable(newestVer.displayString()));
+ qUtf8Printable(this->m_MOVersion.displayString()),
+ qUtf8Printable(newestVer.displayString()));
}
}
});
@@ -224,7 +224,7 @@ void SelfUpdater::closeProgress()
void SelfUpdater::openOutputFile(const QString &fileName)
{
QString outputPath = QDir::fromNativeSeparators(qApp->property("dataPath").toString()) + "/" + fileName;
- qDebug("downloading to %s", qPrintable(outputPath));
+ qDebug("downloading to %s", qUtf8Printable(outputPath));
m_UpdateFile.setFileName(outputPath);
m_UpdateFile.open(QIODevice::WriteOnly);
}