Mercurial > trustbridge
comparison ui/listupdatedialog.h @ 153:252ffe6e27fd
Changed type of MainWindow from QDialog to QMainWindow.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Tue, 25 Mar 2014 08:58:18 +0100 |
parents | 1f27d6db5ee3 |
children | 3ebebd055d3a |
comparison
equal
deleted
inserted
replaced
142:52993db093f4 | 153:252ffe6e27fd |
---|---|
1 #ifndef LISTUPDATEDIALOG_H | 1 #ifndef LISTUPDATEDIALOG_H |
2 #define LISTUPDATEDIALOG_H | 2 #define LISTUPDATEDIALOG_H |
3 | 3 |
4 #include "certificatelist.h" | 4 #include "certificatelist.h" |
5 #include <QDialog> | 5 #include <QDialog> |
6 #include <QMainWindow> | |
6 /** | 7 /** |
7 * @file listupdatedialog.h | 8 * @file listupdatedialog.h |
8 * @brief The dialog for certificate selection. | 9 * @brief The dialog for certificate selection. |
9 */ | 10 */ |
10 | 11 |
12 | 13 |
13 class ListUpdateDialog : public QDialog | 14 class ListUpdateDialog : public QDialog |
14 { | 15 { |
15 public: | 16 public: |
16 /** @brief Create a list update dialog for the listToInstall */ | 17 /** @brief Create a list update dialog for the listToInstall */ |
17 ListUpdateDialog(QDialog *parent, const CertificateList &listToInstall); | 18 ListUpdateDialog(QMainWindow *parent, const CertificateList &listToInstall); |
18 | 19 |
19 private: | 20 private: |
20 CertificateList mCertificateList; | 21 CertificateList mCertificateList; |
21 void setupGUI(); | 22 void setupGUI(); |
22 | 23 |