diff options
author | Saturneric <[email protected]> | 2022-01-02 03:40:22 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-01-02 03:40:22 +0000 |
commit | a056f2186de2470d4328bd1cd682e5e484af4587 (patch) | |
tree | 27775ca169ad93fc812e94a4da99ebd3fa1c53f9 /src/ui/KeyServerImportDialog.cpp | |
parent | <refactor, test>(core, test): test decryption when key not found (diff) | |
download | GpgFrontend-a056f2186de2470d4328bd1cd682e5e484af4587.tar.gz GpgFrontend-a056f2186de2470d4328bd1cd682e5e484af4587.zip |
<refactor, fixed, test>(core, ui): add & modify core and ui
1. add init functions for core.
2. add non ascii settings.
3. fit ui with this version of core.
Diffstat (limited to '')
-rw-r--r-- | src/ui/KeyServerImportDialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/KeyServerImportDialog.cpp b/src/ui/KeyServerImportDialog.cpp index 518b1b94..5bad29f1 100644 --- a/src/ui/KeyServerImportDialog.cpp +++ b/src/ui/KeyServerImportDialog.cpp @@ -503,7 +503,7 @@ void KeyServerImportDialog::slotImportFinished(QString keyid) { void KeyServerImportDialog::importKeys(ByteArrayPtr in_data) { GpgImportInformation result = - GpgKeyImportExportor::GetInstance().ImportKey(std::move(in_data)); + GpgKeyImportExporter::GetInstance().ImportKey(std::move(in_data)); emit signalKeyImported(); QWidget* _parent = qobject_cast<QWidget*>(parent()); if (mAutomatic) { |