diff options
Diffstat (limited to 'common/domain/event.cpp')
-rw-r--r-- | common/domain/event.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/common/domain/event.cpp b/common/domain/event.cpp index 18009fc..9f81eb8 100644 --- a/common/domain/event.cpp +++ b/common/domain/event.cpp | |||
@@ -37,7 +37,7 @@ | |||
37 | 37 | ||
38 | static QMutex sMutex; | 38 | static QMutex sMutex; |
39 | 39 | ||
40 | using namespace Akonadi2::ApplicationDomain; | 40 | using namespace Sink::ApplicationDomain; |
41 | 41 | ||
42 | static TypeIndex &getIndex() | 42 | static TypeIndex &getIndex() |
43 | { | 43 | { |
@@ -50,17 +50,17 @@ static TypeIndex &getIndex() | |||
50 | return *index; | 50 | return *index; |
51 | } | 51 | } |
52 | 52 | ||
53 | ResultSet TypeImplementation<Event>::queryIndexes(const Akonadi2::Query &query, const QByteArray &resourceInstanceIdentifier, QSet<QByteArray> &appliedFilters, Akonadi2::Storage::Transaction &transaction) | 53 | ResultSet TypeImplementation<Event>::queryIndexes(const Sink::Query &query, const QByteArray &resourceInstanceIdentifier, QSet<QByteArray> &appliedFilters, Sink::Storage::Transaction &transaction) |
54 | { | 54 | { |
55 | return getIndex().query(query, appliedFilters, transaction); | 55 | return getIndex().query(query, appliedFilters, transaction); |
56 | } | 56 | } |
57 | 57 | ||
58 | void TypeImplementation<Event>::index(const QByteArray &identifier, const BufferAdaptor &bufferAdaptor, Akonadi2::Storage::Transaction &transaction) | 58 | void TypeImplementation<Event>::index(const QByteArray &identifier, const BufferAdaptor &bufferAdaptor, Sink::Storage::Transaction &transaction) |
59 | { | 59 | { |
60 | return getIndex().add(identifier, bufferAdaptor, transaction); | 60 | return getIndex().add(identifier, bufferAdaptor, transaction); |
61 | } | 61 | } |
62 | 62 | ||
63 | void TypeImplementation<Event>::removeIndex(const QByteArray &identifier, const BufferAdaptor &bufferAdaptor, Akonadi2::Storage::Transaction &transaction) | 63 | void TypeImplementation<Event>::removeIndex(const QByteArray &identifier, const BufferAdaptor &bufferAdaptor, Sink::Storage::Transaction &transaction) |
64 | { | 64 | { |
65 | return getIndex().remove(identifier, bufferAdaptor, transaction); | 65 | return getIndex().remove(identifier, bufferAdaptor, transaction); |
66 | } | 66 | } |