From 1cbd91edbc2c9f1d2f96f9c1f5d5636923a114f6 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Mon, 13 Mar 2017 17:52:58 +0100 Subject: No need to wrap those in jobs --- common/commandprocessor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'common/commandprocessor.cpp') 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 CommandProcessor::processQueue(MessageQueue *queue) } } if (queue->isEmpty()) { - return KAsync::value(KAsync::Break); + return KAsync::Break; } else { - return KAsync::value(KAsync::Continue); + return KAsync::Continue; } }); })) -- cgit v1.2.3