diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:23:48 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:23:48 +0200 |
commit | ee1c8c5c25d25dfa42120125a8a45dc9831ee412 (patch) | |
tree | 67aa287157db954e0cadeee05b4aad331eb2ecf2 /ui/exec_finished_box.cpp | |
parent | 5.13 (diff) | |
download | FreeFileSync-ee1c8c5c25d25dfa42120125a8a45dc9831ee412.tar.gz FreeFileSync-ee1c8c5c25d25dfa42120125a8a45dc9831ee412.tar.bz2 FreeFileSync-ee1c8c5c25d25dfa42120125a8a45dc9831ee412.zip |
5.14
Diffstat (limited to 'ui/exec_finished_box.cpp')
-rw-r--r-- | ui/exec_finished_box.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/exec_finished_box.cpp b/ui/exec_finished_box.cpp index 74c10493..b063ca59 100644 --- a/ui/exec_finished_box.cpp +++ b/ui/exec_finished_box.cpp @@ -115,7 +115,8 @@ void ExecFinishedBox::addItemHistory() if (!skipCmd) { for (auto it = defaultCommands.begin(); it != defaultCommands.end(); ++it) - if (command == it->first || command == it->second) + if (command == it->first || + command == it->second) { skipCmd = true; break; |