aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/import_export/ExportKeyPackageDialog.h
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-10-26 13:43:14 +0000
committersaturneric <[email protected]>2024-10-26 13:43:14 +0000
commit24c28eb752aa611dd1670f3fa7ab6b358b052f1b (patch)
tree6a4f9af003fa4a86b7d7e29a965e37a231951092 /src/ui/dialog/import_export/ExportKeyPackageDialog.h
parentfix: thread concurrent crash issue (diff)
downloadGpgFrontend-24c28eb752aa611dd1670f3fa7ab6b358b052f1b.tar.gz
GpgFrontend-24c28eb752aa611dd1670f3fa7ab6b358b052f1b.zip
fix: test basic operations of multi key db and solve issues
Diffstat (limited to 'src/ui/dialog/import_export/ExportKeyPackageDialog.h')
-rw-r--r--src/ui/dialog/import_export/ExportKeyPackageDialog.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/ui/dialog/import_export/ExportKeyPackageDialog.h b/src/ui/dialog/import_export/ExportKeyPackageDialog.h
index 42e396a2..bf8e92a6 100644
--- a/src/ui/dialog/import_export/ExportKeyPackageDialog.h
+++ b/src/ui/dialog/import_export/ExportKeyPackageDialog.h
@@ -50,11 +50,13 @@ class ExportKeyPackageDialog : public GeneralDialog {
* @param key_ids
* @param parent
*/
- explicit ExportKeyPackageDialog(KeyIdArgsListPtr key_ids, QWidget* parent);
+ explicit ExportKeyPackageDialog(int channel, KeyIdArgsListPtr key_ids,
+ QWidget* parent);
private:
std::shared_ptr<Ui_exportKeyPackageDialog> ui_; ///<
- KeyIdArgsListPtr key_ids_; ///<
- QString passphrase_; ///<
+ int current_gpg_context_channel_;
+ KeyIdArgsListPtr key_ids_; ///<
+ QString passphrase_; ///<
};
} // namespace GpgFrontend::UI