diff options
Diffstat (limited to '')
-rw-r--r-- | src/ui/GpgFrontendUIInit.h (renamed from src/ui/mail/ReceiveMailDialog.cpp) | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/src/ui/mail/ReceiveMailDialog.cpp b/src/ui/GpgFrontendUIInit.h index 765e8baa..ddb791c3 100644 --- a/src/ui/mail/ReceiveMailDialog.cpp +++ b/src/ui/GpgFrontendUIInit.h @@ -26,17 +26,18 @@ * */ -#include "ReceiveMailDialog.h" +#ifndef GPGFRONTEND_GPGFRONTENDUIINIT_H +#define GPGFRONTEND_GPGFRONTENDUIINIT_H -#include "ui_ReceiveMailDialog.h" +#include "GpgFrontendUI.h" -GpgFrontend::UI::ReceiveMailDialog::ReceiveMailDialog(QWidget *parent) - : QDialog(parent), ui_(std::make_shared<Ui_ReceiveMailDialog>()) { - ui_->setupUi(this); -} +namespace GpgFrontend::UI { -void GpgFrontend::UI::ReceiveMailDialog::slot_refresh_data() {} +/** + * @brief + */ +void init_logging(); + +}; // namespace GpgFrontend::UI -void GpgFrontend::UI::ReceiveMailDialog::list_sub_folders( - GpgFrontend::UI::IMAPFolder *parent_folder, - const std::shared_ptr<vmime::net::folder> &) {} +#endif // GPGFRONTEND_GPGFRONTENDUIINIT_H |