aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/widgets/KeyList.h
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-12-13 15:22:33 +0000
committersaturneric <[email protected]>2024-12-13 15:22:33 +0000
commitf7a00c58d2824f49ecaafc0152fc0b8213772e46 (patch)
treed012e5fac4ff9f48cd10381a0b79de0294d28d18 /src/ui/widgets/KeyList.h
parentdoc: update SECURITY.md (diff)
downloadGpgFrontend-f7a00c58d2824f49ecaafc0152fc0b8213772e46.tar.gz
GpgFrontend-f7a00c58d2824f49ecaafc0152fc0b8213772e46.zip
refactor: using qt containers instead of std containers
Diffstat (limited to 'src/ui/widgets/KeyList.h')
-rw-r--r--src/ui/widgets/KeyList.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/ui/widgets/KeyList.h b/src/ui/widgets/KeyList.h
index 4216eba8..7053b10c 100644
--- a/src/ui/widgets/KeyList.h
+++ b/src/ui/widgets/KeyList.h
@@ -142,7 +142,7 @@ class KeyList : public QWidget {
*
* @return KeyIdArgsListPtr
*/
- auto GetChecked() -> KeyIdArgsListPtr;
+ auto GetChecked() -> KeyIdArgsList;
/**
* @brief Get the Checked Keys object
@@ -157,28 +157,28 @@ class KeyList : public QWidget {
* @param key_table
* @return KeyIdArgsListPtr
*/
- static auto GetChecked(const KeyTable& key_table) -> KeyIdArgsListPtr;
+ static auto GetChecked(const KeyTable& key_table) -> KeyIdArgsList;
/**
* @brief Get the Private Checked object
*
* @return KeyIdArgsListPtr
*/
- auto GetCheckedPrivateKey() -> KeyIdArgsListPtr;
+ auto GetCheckedPrivateKey() -> KeyIdArgsList;
/**
* @brief
*
* @return KeyIdArgsListPtr
*/
- auto GetCheckedPublicKey() -> KeyIdArgsListPtr;
+ auto GetCheckedPublicKey() -> KeyIdArgsList;
/**
* @brief Get the All Private Keys object
*
* @return KeyIdArgsListPtr
*/
- auto GetAllPrivateKeys() -> KeyIdArgsListPtr;
+ auto GetAllPrivateKeys() -> KeyIdArgsList;
/**
* @brief Set the Checked object
@@ -186,7 +186,7 @@ class KeyList : public QWidget {
* @param keyIds
* @param key_table
*/
- static void SetChecked(const KeyIdArgsListPtr& key_ids,
+ static void SetChecked(const KeyIdArgsList& key_ids,
const KeyTable& key_table);
/**
@@ -194,7 +194,7 @@ class KeyList : public QWidget {
*
* @return KeyIdArgsListPtr
*/
- auto GetSelected() -> KeyIdArgsListPtr;
+ auto GetSelected() -> KeyIdArgsList;
/**
* @brief Get the Selected Key object