diff options
author | Saturneric <[email protected]> | 2021-10-02 14:08:50 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-10-02 14:16:27 +0000 |
commit | 3c65d087eeee687ac01af2e80f3dd538f9a2c230 (patch) | |
tree | 1e860dc6343c1897e2224a002f2ca44c574381b3 /src/ui/WaitingDialog.h | |
parent | The basic functions of the core pass the test. (diff) | |
download | GpgFrontend-3c65d087eeee687ac01af2e80f3dd538f9a2c230.tar.gz GpgFrontend-3c65d087eeee687ac01af2e80f3dd538f9a2c230.zip |
UI Framework Modified.
Diffstat (limited to '')
-rw-r--r-- | src/ui/WaitingDialog.h (renamed from include/ui/WaitingDialog.h) | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/include/ui/WaitingDialog.h b/src/ui/WaitingDialog.h index df781073..a81ab9ce 100644 --- a/include/ui/WaitingDialog.h +++ b/src/ui/WaitingDialog.h @@ -22,19 +22,20 @@ * */ -#include "GpgFrontend.h" +#include "ui/GpgFrontendUI.h" -class WaitingDialog : public QDialog { -Q_OBJECT -public: - - WaitingDialog(const QString &title, QWidget *parent); - -public slots: +namespace GpgFrontend::UI { -private slots: +class WaitingDialog : public QDialog { + Q_OBJECT + public: + WaitingDialog(const QString& title, QWidget* parent); -private: + public slots: + private slots: + private: }; + +} // namespace GpgFrontend::UI |