diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-01-20 19:07:07 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-01-20 19:07:07 +0100 |
commit | bdb01c2c068df326f5a8328ed1492ab1bea388c5 (patch) | |
tree | 25c2ee1b29bc481b6914c244ed9ca194b1415d16 /common/facadeinterface.h | |
parent | 17e7ee40c9185c0505883853345fd6024c675b1a (diff) | |
download | sink-bdb01c2c068df326f5a8328ed1492ab1bea388c5.tar.gz sink-bdb01c2c068df326f5a8328ed1492ab1bea388c5.zip |
Renamed Akonadi2 to Sink
(except for documentation).
Diffstat (limited to 'common/facadeinterface.h')
-rw-r--r-- | common/facadeinterface.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/common/facadeinterface.h b/common/facadeinterface.h index 318abf3..17cba5e 100644 --- a/common/facadeinterface.h +++ b/common/facadeinterface.h | |||
@@ -27,7 +27,7 @@ | |||
27 | #include "applicationdomaintype.h" | 27 | #include "applicationdomaintype.h" |
28 | #include "resultprovider.h" | 28 | #include "resultprovider.h" |
29 | 29 | ||
30 | namespace Akonadi2 { | 30 | namespace Sink { |
31 | class Query; | 31 | class Query; |
32 | 32 | ||
33 | /** | 33 | /** |
@@ -68,7 +68,7 @@ public: | |||
68 | /** | 68 | /** |
69 | * Load entities from the store. | 69 | * Load entities from the store. |
70 | */ | 70 | */ |
71 | virtual QPair<KAsync::Job<void>, typename Akonadi2::ResultEmitter<typename DomainType::Ptr>::Ptr > load(const Query &query) = 0; | 71 | virtual QPair<KAsync::Job<void>, typename Sink::ResultEmitter<typename DomainType::Ptr>::Ptr > load(const Query &query) = 0; |
72 | }; | 72 | }; |
73 | 73 | ||
74 | template<class DomainType> | 74 | template<class DomainType> |
@@ -90,9 +90,9 @@ public: | |||
90 | return KAsync::error<void>(-1, "Failed to create a facade"); | 90 | return KAsync::error<void>(-1, "Failed to create a facade"); |
91 | } | 91 | } |
92 | 92 | ||
93 | QPair<KAsync::Job<void>, typename Akonadi2::ResultEmitter<typename DomainType::Ptr>::Ptr > load(const Query &query) | 93 | QPair<KAsync::Job<void>, typename Sink::ResultEmitter<typename DomainType::Ptr>::Ptr > load(const Query &query) |
94 | { | 94 | { |
95 | return qMakePair(KAsync::null<void>(), typename Akonadi2::ResultEmitter<typename DomainType::Ptr>::Ptr()); | 95 | return qMakePair(KAsync::null<void>(), typename Sink::ResultEmitter<typename DomainType::Ptr>::Ptr()); |
96 | } | 96 | } |
97 | }; | 97 | }; |
98 | 98 | ||