diff options
author | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-01-30 22:27:34 +0000 |
---|---|---|
committer | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-01-30 22:27:34 +0000 |
commit | 0f0a9023c737e77d101ef5d3fb1ad592a8a98973 (patch) | |
tree | 321fd1031cd1d3db75900e75a03508c5e488371e /gpgwin.cpp | |
parent | add logo and change about-box (diff) | |
download | gpg4usb-0f0a9023c737e77d101ef5d3fb1ad592a8a98973.tar.gz gpg4usb-0f0a9023c737e77d101ef5d3fb1ad592a8a98973.zip |
changed text in about dialog to promote mailing list and contact page
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@464 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'gpgwin.cpp')
-rw-r--r-- | gpgwin.cpp | 17 |
1 files changed, 6 insertions, 11 deletions
@@ -466,17 +466,11 @@ void GpgWin::about() "Bene, Heimer, Juergen, Nils, Ubbo<br><br>" "<b>Translation:</b><br>" "Alessandro (pt_br), Kirill (ru), Viriato (es), Serse (it) <br><br>" - "If you have any questions and/or suggestions,<br/>" - "contact us at gpg4usb at cpunk.de or feel<br>" - "free to meet us in our xmpp-channel:<br>" - "gpg4usb at conference.jabber.ccc.de</center>")); - - /*QMessageBox::about(this, *title, *text); - QMessageBox aboutBox(this); - aboutBox.setText(*text); - aboutBox.setIconPixmap(*pixmap); - aboutBox.setWindowTitle(*title); - aboutBox.exec();*/ + "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>.")); + QDialog *dialog = new QDialog(this); dialog->setWindowTitle(*title); @@ -489,6 +483,7 @@ void GpgWin::about() layout->addWidget(pixmapLabel, 0, 0, 1, -1, Qt::AlignCenter); QLabel *aboutLabel = new QLabel(); aboutLabel->setText(*text); + aboutLabel->setOpenExternalLinks(true); layout->addWidget(aboutLabel, 1, 0, 1, -1); layout->addItem(new QSpacerItem(20, 10, QSizePolicy::Minimum, QSizePolicy::Fixed), 2, 1, 1, 1); |