diff options
author | Saturneric <[email protected]> | 2022-02-02 07:42:44 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-02-02 07:42:44 +0000 |
commit | 7993367384ff5b63bdbc7b48ebb6817a798e0a2c (patch) | |
tree | 5dc6ad66570db2eea9ce044b9962289d287124b4 /src/ui/keypair_details/KeyNewUIDDialog.cpp | |
parent | <doc>(project): Improve code document-related Settings (diff) | |
download | GpgFrontend-7993367384ff5b63bdbc7b48ebb6817a798e0a2c.tar.gz GpgFrontend-7993367384ff5b63bdbc7b48ebb6817a798e0a2c.zip |
<refactor>(src, test): Normalize the naming of partial classes
Diffstat (limited to '')
-rw-r--r-- | src/ui/keypair_details/KeyNewUIDDialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/keypair_details/KeyNewUIDDialog.cpp b/src/ui/keypair_details/KeyNewUIDDialog.cpp index 0e20acd0..46a7dc75 100644 --- a/src/ui/keypair_details/KeyNewUIDDialog.cpp +++ b/src/ui/keypair_details/KeyNewUIDDialog.cpp @@ -27,7 +27,7 @@ #include "ui/keypair_details/KeyNewUIDDialog.h" #include "gpg/function/GpgKeyGetter.h" -#include "gpg/function/UIDOperator.h" +#include "gpg/function/GpgUIDOperator.h" #include "ui/SignalStation.h" namespace GpgFrontend::UI { @@ -84,7 +84,7 @@ void KeyNewUIDDialog::slot_create_new_uid() { } auto error_string = error_stream.str(); if (error_string.empty()) { - if (UIDOperator::GetInstance().AddUID(m_key_, name_->text().toStdString(), + if (GpgUIDOperator::GetInstance().AddUID(m_key_, name_->text().toStdString(), comment_->text().toStdString(), email_->text().toStdString())) { emit finished(1); |