From 945528d6b1d235b195b4b4d5e6226d04b9bdb01c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Mon, 26 Jun 2017 00:16:38 +0200 Subject: [PATCH] Cosmetics --- src/gui.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gui.cpp b/src/gui.cpp index 1ac451c2..a6b4a878 100644 --- a/src/gui.cpp +++ b/src/gui.cpp @@ -650,6 +650,7 @@ void GUI::createStatusBar() void GUI::about() { QMessageBox msgBox(this); + QUrl homepage(APP_HOMEPAGE); msgBox.setWindowTitle(tr("About GPXSee")); msgBox.setText("

" + QString(APP_NAME) + "

" + tr("Version ") @@ -657,7 +658,8 @@ void GUI::about() msgBox.setInformativeText("
" + tr("GPXSee is distributed under the terms of the GNU General Public " "License version 3. For more info about GPXSee visit the project " - "homepage at ") + "" + APP_HOMEPAGE + "homepage at ") + "" + + homepage.toString(QUrl::RemoveScheme).mid(2) + ".
"); QIcon icon = msgBox.windowIcon();