diff options
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); |