Mercurial > trustbridge
annotate ui/aboutdialog.h @ 249:6a7eb102716d
Remove code duplication by unifying the certificatelist.
You should now check for isInstallCert to determine wether this
certificate should be installed or removed.
Leaving the getInstallCertificates and getRemoveCertificates
in place for compatibilty would have been easier to keep the
tests stable.
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Mon, 31 Mar 2014 08:06:17 +0000 |
parents | 4790a26c2e8b |
children | 17e1c8f37d72 |
rev | line source |
---|---|
199 | 1 #ifndef ABOUTDIALOG_H |
2 #define ABOUTDIALOG_H | |
3 | |
4 #include <QDialog> | |
5 #include <QMainWindow> | |
6 /** | |
7 * @file aboutdialog.h | |
8 * @brief The dialog for information about the application. | |
9 */ | |
10 | |
11 class AboutDialog : public QDialog | |
12 { | |
13 public: | |
14 /** @brief Create a help dialog */ | |
15 AboutDialog(QMainWindow *parent); | |
16 | |
17 private: | |
18 void setupGUI(); | |
19 | |
20 }; | |
21 #endif // ABOUTDIALOG_H |