diff options
Diffstat (limited to 'common/resource.cpp')
-rw-r--r-- | common/resource.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/common/resource.cpp b/common/resource.cpp index e158a40..bd69afd 100644 --- a/common/resource.cpp +++ b/common/resource.cpp | |||
@@ -53,16 +53,16 @@ void Resource::processCommand(int commandId, const QByteArray &data, uint size, | |||
53 | pipeline->null(); | 53 | pipeline->null(); |
54 | } | 54 | } |
55 | 55 | ||
56 | Async::Job<void> Resource::synchronizeWithSource(Pipeline *pipeline) | 56 | KAsync::Job<void> Resource::synchronizeWithSource(Pipeline *pipeline) |
57 | { | 57 | { |
58 | return Async::start<void>([pipeline](Async::Future<void> &f) { | 58 | return KAsync::start<void>([pipeline](KAsync::Future<void> &f) { |
59 | pipeline->null(); | 59 | pipeline->null(); |
60 | }); | 60 | }); |
61 | } | 61 | } |
62 | 62 | ||
63 | Async::Job<void> Resource::processAllMessages() | 63 | KAsync::Job<void> Resource::processAllMessages() |
64 | { | 64 | { |
65 | return Async::null<void>(); | 65 | return KAsync::null<void>(); |
66 | } | 66 | } |
67 | 67 | ||
68 | class ResourceFactory::Private | 68 | class ResourceFactory::Private |