summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/commandprocessor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/commandprocessor.cpp b/common/commandprocessor.cpp
index 33e2f81..2d9e93c 100644
--- a/common/commandprocessor.cpp
+++ b/common/commandprocessor.cpp
@@ -245,9 +245,9 @@ KAsync::Job<void> CommandProcessor::processQueue(MessageQueue *queue)
245 } 245 }
246 } 246 }
247 if (queue->isEmpty()) { 247 if (queue->isEmpty()) {
248 return KAsync::value<KAsync::ControlFlowFlag>(KAsync::Break); 248 return KAsync::Break;
249 } else { 249 } else {
250 return KAsync::value<KAsync::ControlFlowFlag>(KAsync::Continue); 250 return KAsync::Continue;
251 } 251 }
252 }); 252 });
253 })) 253 }))