aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/KeyServerImportDialog.h
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2021-12-02 19:49:32 +0000
committerSaturneric <[email protected]>2021-12-02 19:49:32 +0000
commit6027b6098ac4e8dfdc75fc08e3f5d3b3b2997ef3 (patch)
treea399d2c830dadf6750ddb44a69309b443255846c /src/ui/KeyServerImportDialog.h
parentModified & Improve (diff)
downloadGpgFrontend-6027b6098ac4e8dfdc75fc08e3f5d3b3b2997ef3.tar.gz
GpgFrontend-6027b6098ac4e8dfdc75fc08e3f5d3b3b2997ef3.zip
Fix and Modified.
1. Fix known issues. 2. Modified Settings. 3. Modified parts of modules.
Diffstat (limited to 'src/ui/KeyServerImportDialog.h')
-rw-r--r--src/ui/KeyServerImportDialog.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/ui/KeyServerImportDialog.h b/src/ui/KeyServerImportDialog.h
index 0fb7dbf1..d7f3364d 100644
--- a/src/ui/KeyServerImportDialog.h
+++ b/src/ui/KeyServerImportDialog.h
@@ -36,7 +36,7 @@ class KeyServerImportDialog : public QDialog {
Q_OBJECT
public:
- KeyServerImportDialog(KeyList* keyList, bool automatic, QWidget* parent);
+ KeyServerImportDialog(bool automatic, QWidget* parent);
KeyServerImportDialog(QWidget* parent);
@@ -44,8 +44,6 @@ class KeyServerImportDialog : public QDialog {
void slotImport(const QStringList& keyIds, const QUrl& keyserverUrl);
- void slotImportKey(const KeyIdArgsListPtr& keys);
-
signals:
void signalKeyImported();
@@ -59,6 +57,8 @@ class KeyServerImportDialog : public QDialog {
void slotSearch();
+ void slotSaveWindowState();
+
private:
void createKeysTable();
@@ -72,12 +72,8 @@ class KeyServerImportDialog : public QDialog {
QComboBox* createComboBox();
- bool mAutomatic;
-
- QString appPath;
- QSettings settings;
+ bool mAutomatic = false;
- KeyList* mKeyList{};
QLineEdit* searchLineEdit{};
QComboBox* keyServerComboBox{};
QProgressBar* waitingBar;