aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/mail/ReceiveMailDialog.cpp
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2022-05-07 17:01:29 +0000
committerSaturneric <[email protected]>2022-05-07 17:01:29 +0000
commitf1a2ce4bcb7d46981d1fc471e517709f076d9365 (patch)
treee9d42769dccaf452ba14394e0e0fe574fcd086dd /src/ui/mail/ReceiveMailDialog.cpp
parentfix: add openssl dependency for windows ci (diff)
downloadGpgFrontend-f1a2ce4bcb7d46981d1fc471e517709f076d9365.tar.gz
GpgFrontend-f1a2ce4bcb7d46981d1fc471e517709f076d9365.zip
refactor: develop 2.0.6 start
1. delete smtp ability 2. change libs link type to dramatic
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