diff options
author | saturneric <[email protected]> | 2024-06-28 21:20:04 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-06-28 21:20:04 +0000 |
commit | 19926663f11c1013d0c68ccc92f2a4e236942ce9 (patch) | |
tree | 6847027cae650d78a6607d936a4cb512df2a8f54 /src/ui/main_window/KeyMgmt.cpp | |
parent | feat: user can select shown columns at key table (diff) | |
download | GpgFrontend-19926663f11c1013d0c68ccc92f2a4e236942ce9.tar.gz GpgFrontend-19926663f11c1013d0c68ccc92f2a4e236942ce9.zip |
refactor: rewrite KeyMenuAbility
Diffstat (limited to '')
-rw-r--r-- | src/ui/main_window/KeyMgmt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/main_window/KeyMgmt.cpp b/src/ui/main_window/KeyMgmt.cpp index c45fd46f..bb158a2b 100644 --- a/src/ui/main_window/KeyMgmt.cpp +++ b/src/ui/main_window/KeyMgmt.cpp @@ -52,7 +52,7 @@ namespace GpgFrontend::UI { KeyMgmt::KeyMgmt(QWidget* parent) : GeneralMainWindow("key_management", parent) { /* the list of Keys available*/ - key_list_ = new KeyList(KeyMenuAbility::ALL, GpgKeyTableColumn::kALL, this); + key_list_ = new KeyList(KeyMenuAbility::kALL, GpgKeyTableColumn::kALL, this); key_list_->AddListGroupTab(tr("All"), "all", GpgKeyTableDisplayMode::kPUBLIC_KEY | |