aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/UserInterfaceUtils.cpp
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2021-11-28 13:38:59 +0000
committerSaturneric <[email protected]>2021-11-28 13:38:59 +0000
commit9c1446c97ffff92a6c90442f9148239f24ac9a54 (patch)
tree73689befad5467dfa02ea0fe8934c52c99c8a874 /src/ui/UserInterfaceUtils.cpp
parentSolve key generation and related update issues. (diff)
downloadGpgFrontend-9c1446c97ffff92a6c90442f9148239f24ac9a54.tar.gz
GpgFrontend-9c1446c97ffff92a6c90442f9148239f24ac9a54.zip
Fix some known issues in basic operations and file operations.
Diffstat (limited to 'src/ui/UserInterfaceUtils.cpp')
-rw-r--r--src/ui/UserInterfaceUtils.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/ui/UserInterfaceUtils.cpp b/src/ui/UserInterfaceUtils.cpp
index 8a6021c0..4dd571a1 100644
--- a/src/ui/UserInterfaceUtils.cpp
+++ b/src/ui/UserInterfaceUtils.cpp
@@ -53,13 +53,16 @@ void process_result_analyse(TextEdit* edit, InfoBoardWidget* info_board,
void process_result_analyse(TextEdit* edit, InfoBoardWidget* info_board,
const ResultAnalyse& result_analyse_a,
const ResultAnalyse& result_analyse_b) {
+
+ LOG(INFO) << "process_result_analyse Started";
+
info_board->associateTabWidget(edit->tabWidget);
info_board->associateFileTreeView(edit->curFilePage());
refresh_info_board(
info_board,
- std::min(result_analyse_a.getStatus(), result_analyse_a.getStatus()),
- result_analyse_a.getResultReport() + result_analyse_a.getResultReport());
+ std::min(result_analyse_a.getStatus(), result_analyse_b.getStatus()),
+ result_analyse_a.getResultReport() + result_analyse_b.getResultReport());
}
void process_operation(QWidget* parent, const std::string& waiting_title,