From dd0a3a488de5cfc0ee98769a05653974ed462cd7 Mon Sep 17 00:00:00 2001 From: Luciano Montanaro Date: Sun, 3 Jul 2011 12:02:23 +0200 Subject: [PATCH] Improved About dialog Added links to the Quando Parte page and to the data provider pages. --- application/app.cpp | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/application/app.cpp b/application/app.cpp index 2af0366..a7fc95e 100644 --- a/application/app.cpp +++ b/application/app.cpp @@ -146,10 +146,18 @@ void App::showAboutDialog() QString name = QApplication::instance()->applicationName(); QString version = QApplication::instance()->applicationVersion(); QString aboutText = QString( - tr("

%1 version %2

" + tr("

" + "%1 version %2" + "

" "

Copyright (c) 2010, 2011

" "

Luciano Montanaro (mikelima@cirulla.net)

" - "

Licensed under the GNU Public License v2 or above

")).arg(name).arg(version); + "

Licensed under the GNU Public License v2 or above

" + "

Station geolocation data from " + "OpenStreetMap" + "

" + "

Realtime train data from " + "Viaggiatreno" + "

")).arg(name).arg(version); QMessageBox::about(stationView, name, aboutText); } -- 1.7.9.5