summaryrefslogtreecommitdiffstats
path: root/common/resourceaccess.h
diff options
context:
space:
mode:
authorDan Vrátil <dvratil@redhat.com>2015-05-15 16:22:03 +0200
committerDan Vrátil <dvratil@redhat.com>2015-05-15 16:22:31 +0200
commitb43c0cf97615957e097daef29ff8febc1ec884c8 (patch)
tree445479bf66df161e8554844a478d99d03ba43061 /common/resourceaccess.h
parent9270185becb48401bf3b2337d248763df0873107 (diff)
downloadsink-b43c0cf97615957e097daef29ff8febc1ec884c8.tar.gz
sink-b43c0cf97615957e097daef29ff8febc1ec884c8.zip
Adapt to KAsync namespace change
Diffstat (limited to 'common/resourceaccess.h')
-rw-r--r--common/resourceaccess.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/common/resourceaccess.h b/common/resourceaccess.h
index c16a9d2..648b12e 100644
--- a/common/resourceaccess.h
+++ b/common/resourceaccess.h
@@ -43,13 +43,13 @@ public:
43 QByteArray resourceName() const; 43 QByteArray resourceName() const;
44 bool isReady() const; 44 bool isReady() const;
45 45
46 Async::Job<void> sendCommand(int commandId); 46 KAsync::Job<void> sendCommand(int commandId);
47 Async::Job<void> sendCommand(int commandId, flatbuffers::FlatBufferBuilder &fbb); 47 KAsync::Job<void> sendCommand(int commandId, flatbuffers::FlatBufferBuilder &fbb);
48 Async::Job<void> synchronizeResource(bool remoteSync, bool localSync); 48 KAsync::Job<void> synchronizeResource(bool remoteSync, bool localSync);
49 /** 49 /**
50 * Tries to connect to server, and returns a connected socket on success. 50 * Tries to connect to server, and returns a connected socket on success.
51 */ 51 */
52 static Async::Job<QSharedPointer<QLocalSocket> > connectToServer(const QByteArray &identifier); 52 static KAsync::Job<QSharedPointer<QLocalSocket> > connectToServer(const QByteArray &identifier);
53 53
54public Q_SLOTS: 54public Q_SLOTS:
55 void open(); 55 void open();