diff options
author | Dan Vrátil <dvratil@redhat.com> | 2015-05-15 16:00:32 +0200 |
---|---|---|
committer | Dan Vrátil <dvratil@redhat.com> | 2015-05-15 16:22:28 +0200 |
commit | 5b78e0da1d64b6096829f54b29f14ec5643b5ece (patch) | |
tree | 2091795596f9721bc1d9d8cb9965103d5a32df7a /async/src/future.cpp | |
parent | 3bbee6c42683db5f85b01e4eb6dab8135e199f6c (diff) | |
download | sink-5b78e0da1d64b6096829f54b29f14ec5643b5ece.tar.gz sink-5b78e0da1d64b6096829f54b29f14ec5643b5ece.zip |
Async: rename Async namespace to KAsync
Diffstat (limited to 'async/src/future.cpp')
-rw-r--r-- | async/src/future.cpp | 4 |
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 | ||
21 | using namespace Async; | 21 | using namespace KAsync; |
22 | 22 | ||
23 | FutureBase::PrivateBase::PrivateBase(const Private::ExecutionPtr &execution) | 23 | FutureBase::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 | ||
56 | FutureBase::FutureBase(const Async::FutureBase &other) | 56 | FutureBase::FutureBase(const KAsync::FutureBase &other) |
57 | : d(other.d) | 57 | : d(other.d) |
58 | { | 58 | { |
59 | } | 59 | } |