aboutsummaryrefslogtreecommitdiffstats
path: root/mainwindow.cpp
diff options
context:
space:
mode:
authorubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910>2012-01-09 00:33:53 +0000
committerubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910>2012-01-09 00:33:53 +0000
commit55a52020e7278151912d58af5274e38d0a131e72 (patch)
treeb50ed522ec96d3b935d222fccda36569c9b0436b /mainwindow.cpp
parentfix build on qt < 4.8 (diff)
downloadgpg4usb-55a52020e7278151912d58af5274e38d0a131e72.tar.gz
gpg4usb-55a52020e7278151912d58af5274e38d0a131e72.zip
tell gpgme and qt version this app was compiled with in about dialog
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@736 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'mainwindow.cpp')
-rw-r--r--mainwindow.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/mainwindow.cpp b/mainwindow.cpp
index d90ffd1..e247d19 100644
--- a/mainwindow.cpp
+++ b/mainwindow.cpp
@@ -592,7 +592,9 @@ void MainWindow::about()
"If you have any questions or suggestions have a look<br/>"
"at our <a href=\"http://gpg4usb.cpunk.de/contact.php\">"
"contact page</a> or send a mail to our<br/> mailing list at"
- " <a href=\"mailto:[email protected]\">[email protected]</a>."));
+ " <a href=\"mailto:[email protected]\">[email protected]</a>.")
+ + tr("<br/><br/> Built with Qt ") + qVersion()
+ + tr(" and GPGME ") + GpgME::GpgContext::getGpgmeVersion());
QDialog *dialog = new QDialog(this);
dialog->setWindowTitle(*title);