From kde-commits Sun Sep 04 15:26:47 2011 From: Michael Leupold Date: Sun, 04 Sep 2011 15:26:47 +0000 To: kde-commits Subject: [kdelibs/ksecretsservice] /: Refactor the generic backends and its Message-Id: <20110904152647.5BA54A60BE () git ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=131515003026843 Git commit 6adcc1571351e6e503b5f8968abee8d9305241fd by Michael Leupold. Committed on 28/08/2010 at 22:45. Pushed by vrusu into branch 'ksecretsservice'. Refactor the generic backends and its implementation to use the new internal QueuedJob/BackendJob API. Adapt unit-test to succeed. Add unit-tests for the asynchronous backend methods. Add missing Q_OBJECT macro. Fix the D-Bus daemon part to play along nicely with the new BackendJob classes. Unit-tests up and running again. svn path=/trunk/playground/base/ksecretservice/; revision=1169252 M +2 -2 queuedjob.h http://commits.kde.org/kdelibs/6adcc1571351e6e503b5f8968abee8d9305241fd diff --git a/queuedjob.h b/queuedjob.h index 59dcb75..b9e5520 100644 --- a/queuedjob.h +++ b/queuedjob.h @@ -82,8 +82,8 @@ public: * advertised that it can be called immediately. * * @note This method has to call emitResult() before returning. Even if - * noone is interested in the signal it's used to set mark this - * job as finished. + * noone is interested in the signal it's used to mark this job + * as finished and call deleteLater(). */ virtual void exec() = 0;