diff options
author | saturneric <[email protected]> | 2024-10-26 13:43:14 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-10-26 13:43:14 +0000 |
commit | 24c28eb752aa611dd1670f3fa7ab6b358b052f1b (patch) | |
tree | 6a4f9af003fa4a86b7d7e29a965e37a231951092 /src/ui/dialog/import_export/ExportKeyPackageDialog.h | |
parent | fix: thread concurrent crash issue (diff) | |
download | GpgFrontend-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.h | 8 |
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 |