summaryrefslogtreecommitdiffstats
path: root/qt-ui/updatemanager.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-01-01 12:13:27 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-01-01 12:13:27 -0800
commit26c3dcbcb69495f67207b70cf81512c855d79cbf (patch)
tree7f5329ad86f1ff95da14b8c390693aab4c4862e2 /qt-ui/updatemanager.cpp
parent75af60f327a6f19f283d12000d24a86aff929e8b (diff)
downloadsubsurface-26c3dcbcb69495f67207b70cf81512c855d79cbf.tar.gz
Update check: better message when running development version
This isn't an error. The server tells us what it knows. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/updatemanager.cpp')
-rw-r--r--qt-ui/updatemanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/updatemanager.cpp b/qt-ui/updatemanager.cpp
index 57b1c6db5..6a02578b5 100644
--- a/qt-ui/updatemanager.cpp
+++ b/qt-ui/updatemanager.cpp
@@ -73,7 +73,7 @@ void UpdateManager::requestReceived()
// strings that it is likely to send back
if (responseBody.contains("Newest release version is "))
responseBody.replace("Newest release version is ", tr("Newest release version is "));
- msgText = tr("There was an error while trying to check for updates.<br/><br/>%1").arg(responseBody);
+ msgText = tr("The server returned the following information:").append("<br/><br/>").append(responseBody);
msgbox.setIcon(QMessageBox::Warning);
}
}