summaryrefslogtreecommitdiffstats
path: root/async/src/future.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'async/src/future.cpp')
-rw-r--r--async/src/future.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/async/src/future.cpp b/async/src/future.cpp
index 4f3cd80..9281cc8 100644
--- a/async/src/future.cpp
+++ b/async/src/future.cpp
@@ -18,7 +18,7 @@
18#include "future.h" 18#include "future.h"
19#include "async.h" 19#include "async.h"
20 20
21using namespace Async; 21using namespace KAsync;
22 22
23FutureBase::PrivateBase::PrivateBase(const Private::ExecutionPtr &execution) 23FutureBase::PrivateBase::PrivateBase(const Private::ExecutionPtr &execution)
24 : finished(false) 24 : finished(false)
@@ -53,7 +53,7 @@ FutureBase::FutureBase(FutureBase::PrivateBase *dd)
53{ 53{
54} 54}
55 55
56FutureBase::FutureBase(const Async::FutureBase &other) 56FutureBase::FutureBase(const KAsync::FutureBase &other)
57 : d(other.d) 57 : d(other.d)
58{ 58{
59} 59}