diff options
author | Saturneric <[email protected]> | 2022-12-22 10:30:36 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-12-22 10:30:36 +0000 |
commit | 3cb623b07e50d9e95dace9966dc0337e72f57dc2 (patch) | |
tree | dfe994f28f0a6dee6151febf3b50f22adceab74e /src/ui/dialog/help/GnupgTab.h | |
parent | Merge pull request #70 from saturneric/dev/2.0.8/saturneric (diff) | |
parent | fix: continue to solve ubuntu 18.04 build issues (diff) | |
download | GpgFrontend-2.0.10.tar.gz GpgFrontend-2.0.10.zip |
fix: solve conflictsv2.0.10
Diffstat (limited to '')
-rw-r--r-- | src/ui/dialog/help/GnupgTab.h | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/ui/dialog/help/GnupgTab.h b/src/ui/dialog/help/GnupgTab.h index 4fc7ff22..c143bae3 100644 --- a/src/ui/dialog/help/GnupgTab.h +++ b/src/ui/dialog/help/GnupgTab.h @@ -35,8 +35,9 @@ #include "core/GpgContext.h" #include "ui/GpgFrontendUI.h" -namespace GpgFrontend::UI{ -class GnupgTab: public QWidget { +class Ui_GnuPGInfo; +namespace GpgFrontend::UI { +class GnupgTab : public QWidget { Q_OBJECT public: /** @@ -45,9 +46,14 @@ class GnupgTab: public QWidget { * @param parent */ explicit GnupgTab(QWidget* parent = nullptr); -}; -} + private: + std::shared_ptr<Ui_GnuPGInfo> ui_; + QProcess* gpgconf_process_; + private slots: + void process_components_info(int, QProcess::ExitStatus); +}; +} // namespace GpgFrontend::UI #endif // GPGFRONTEND_GNUPGTAB_H |