summaryrefslogtreecommitdiffstats
path: root/common/changereplay.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/changereplay.h')
-rw-r--r--common/changereplay.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/changereplay.h b/common/changereplay.h
index a568060..42736ca 100644
--- a/common/changereplay.h
+++ b/common/changereplay.h
@@ -59,8 +59,8 @@ private:
59 59
60class NullChangeReplay : public ChangeReplay 60class NullChangeReplay : public ChangeReplay
61{ 61{
62 public: 62public:
63 NullChangeReplay() : ChangeReplay("null") {} 63 NullChangeReplay(const QByteArray &resourceName) : ChangeReplay(resourceName) {}
64 KAsync::Job<void> replay(const QByteArray &type, const QByteArray &key, const QByteArray &value) Q_DECL_OVERRIDE { return KAsync::null<void>(); } 64 KAsync::Job<void> replay(const QByteArray &type, const QByteArray &key, const QByteArray &value) Q_DECL_OVERRIDE { return KAsync::null<void>(); }
65}; 65};
66 66