summaryrefslogtreecommitdiffstats
path: root/common/domain/event.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/domain/event.cpp')
-rw-r--r--common/domain/event.cpp8
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
38static QMutex sMutex; 38static QMutex sMutex;
39 39
40using namespace Akonadi2::ApplicationDomain; 40using namespace Sink::ApplicationDomain;
41 41
42static TypeIndex &getIndex() 42static TypeIndex &getIndex()
43{ 43{
@@ -50,17 +50,17 @@ static TypeIndex &getIndex()
50 return *index; 50 return *index;
51} 51}
52 52
53ResultSet TypeImplementation<Event>::queryIndexes(const Akonadi2::Query &query, const QByteArray &resourceInstanceIdentifier, QSet<QByteArray> &appliedFilters, Akonadi2::Storage::Transaction &transaction) 53ResultSet 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
58void TypeImplementation<Event>::index(const QByteArray &identifier, const BufferAdaptor &bufferAdaptor, Akonadi2::Storage::Transaction &transaction) 58void 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
63void TypeImplementation<Event>::removeIndex(const QByteArray &identifier, const BufferAdaptor &bufferAdaptor, Akonadi2::Storage::Transaction &transaction) 63void 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}