diff options
author | saturneric <[email protected]> | 2023-03-31 19:16:59 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2023-03-31 19:16:59 +0000 |
commit | 25e7d7c1fd4176298d04fc24a0065166923aad91 (patch) | |
tree | abc76f7ba1eecff0eac7020dcdf0f3c385305ddb /src | |
parent | fix: solve codacy issues (diff) | |
download | GpgFrontend-25e7d7c1fd4176298d04fc24a0065166923aad91.tar.gz GpgFrontend-25e7d7c1fd4176298d04fc24a0065166923aad91.zip |
fix: solve missing return value issue
Diffstat (limited to 'src')
-rw-r--r-- | src/ui/dialog/import_export/KeyImportDetailDialog.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ui/dialog/import_export/KeyImportDetailDialog.cpp b/src/ui/dialog/import_export/KeyImportDetailDialog.cpp index 4e10146b..32ae63fa 100644 --- a/src/ui/dialog/import_export/KeyImportDetailDialog.cpp +++ b/src/ui/dialog/import_export/KeyImportDetailDialog.cpp @@ -190,6 +190,7 @@ QString KeyImportDetailDialog::get_status_string(int key_status) { } } } + return status_string; } void KeyImportDetailDialog::create_button_box() { |