diff options
author | Saturneric <[email protected]> | 2021-11-28 04:35:01 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-11-28 04:35:01 +0000 |
commit | b5b3ba7b1dc52a8dbae2a3a6970b44ede827f060 (patch) | |
tree | 7dffd4f4e6684d078616d88999590b95e8a56410 /src/ui/widgets/SignersPicker.h | |
parent | UI Framework Modified. (diff) | |
download | GpgFrontend-b5b3ba7b1dc52a8dbae2a3a6970b44ede827f060.tar.gz GpgFrontend-b5b3ba7b1dc52a8dbae2a3a6970b44ede827f060.zip |
Can be compiled with minimal UI support.
Diffstat (limited to 'src/ui/widgets/SignersPicker.h')
-rw-r--r-- | src/ui/widgets/SignersPicker.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/ui/widgets/SignersPicker.h b/src/ui/widgets/SignersPicker.h index 17c57e62..278e0142 100644 --- a/src/ui/widgets/SignersPicker.h +++ b/src/ui/widgets/SignersPicker.h @@ -27,7 +27,6 @@ #include "GpgFrontend.h" #include "gpg/GpgContext.h" - #include "ui/widgets/KeyList.h" namespace GpgFrontend::UI { @@ -36,13 +35,11 @@ class SignersPicker : public QDialog { Q_OBJECT public: - explicit SignersPicker(GpgFrontend::GpgContext* ctx, - QWidget* parent = nullptr); + explicit SignersPicker(QWidget* parent = nullptr); - void getCheckedSigners(QVector<GpgKey>& keys); + GpgFrontend::KeyIdArgsListPtr getCheckedSigners(); private: - GpgFrontend::GpgContext* mCtx; KeyList* mKeyList; }; |