diff options
Diffstat (limited to '')
-rw-r--r-- | src/ui/widgets/SignersPicker.h (renamed from include/ui/widgets/SignersPicker.h) | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/include/ui/widgets/SignersPicker.h b/src/ui/widgets/SignersPicker.h index 4c9c9f2d..17c57e62 100644 --- a/include/ui/widgets/SignersPicker.h +++ b/src/ui/widgets/SignersPicker.h @@ -30,19 +30,22 @@ #include "ui/widgets/KeyList.h" -class SignersPicker : public QDialog { -Q_OBJECT +namespace GpgFrontend::UI { -public: +class SignersPicker : public QDialog { + Q_OBJECT - explicit SignersPicker(GpgFrontend::GpgContext *ctx, QWidget *parent = nullptr); + public: + explicit SignersPicker(GpgFrontend::GpgContext* ctx, + QWidget* parent = nullptr); - void getCheckedSigners(QVector<GpgKey> &keys); + void getCheckedSigners(QVector<GpgKey>& keys); -private: - GpgFrontend::GpgContext *mCtx; - KeyList *mKeyList; + private: + GpgFrontend::GpgContext* mCtx; + KeyList* mKeyList; }; +} // namespace GpgFrontend::UI -#endif //GPGFRONTEND_ZH_CN_TS_SIGNERSPIRCKER_H +#endif // GPGFRONTEND_ZH_CN_TS_SIGNERSPIRCKER_H |