aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/model/GpgGenKeyInfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/model/GpgGenKeyInfo.cpp')
-rw-r--r--src/core/model/GpgGenKeyInfo.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/model/GpgGenKeyInfo.cpp b/src/core/model/GpgGenKeyInfo.cpp
index 1aaa4cea..180a7fab 100644
--- a/src/core/model/GpgGenKeyInfo.cpp
+++ b/src/core/model/GpgGenKeyInfo.cpp
@@ -216,8 +216,8 @@ GenKeyInfo::GenKeyInfo(bool m_is_sub_key) : subkey_(m_is_sub_key) {
}
auto GenKeyInfo::GetSupportedKeyAlgo()
- -> const std::vector<GenKeyInfo::KeyGenAlgo> & {
- static std::vector<GenKeyInfo::KeyGenAlgo> k_support_key_algo = {
+ -> const QContainer<GenKeyInfo::KeyGenAlgo> & {
+ static QContainer<GenKeyInfo::KeyGenAlgo> k_support_key_algo = {
{"RSA", "RSA", ""},
{"DSA", "DSA", ""},
};
@@ -260,8 +260,8 @@ auto GenKeyInfo::GetSupportedKeyAlgo()
}
auto GenKeyInfo::GetSupportedSubkeyAlgo()
- -> const std::vector<GenKeyInfo::KeyGenAlgo> & {
- static std::vector<GenKeyInfo::KeyGenAlgo> k_support_subkey_algo = {
+ -> const QContainer<GenKeyInfo::KeyGenAlgo> & {
+ static QContainer<GenKeyInfo::KeyGenAlgo> k_support_subkey_algo = {
{"RSA", "", "RSA"},
{"DSA", "", "DSA"},
{"ELG-E", "", "ELG"},