diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2015-08-13 01:27:21 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2015-08-13 01:27:21 +0200 |
commit | b6d5d206de4d02149c6530236154283bf834087a (patch) | |
tree | 0d57764b674df3ffee1df3f3e9fb1690ae06bbdc /common/pipeline.cpp | |
parent | 7c9ae062101b5dc8f963c70fb753f8346a9b5c48 (diff) | |
download | sink-b6d5d206de4d02149c6530236154283bf834087a.tar.gz sink-b6d5d206de4d02149c6530236154283bf834087a.zip |
Untangled the include dependencies a bit.
We no longer depend on clientapi.h from everywhere.
Diffstat (limited to 'common/pipeline.cpp')
-rw-r--r-- | common/pipeline.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/pipeline.cpp b/common/pipeline.cpp index 0231631..207cc5e 100644 --- a/common/pipeline.cpp +++ b/common/pipeline.cpp | |||
@@ -21,7 +21,6 @@ | |||
21 | #include "pipeline.h" | 21 | #include "pipeline.h" |
22 | 22 | ||
23 | #include <QByteArray> | 23 | #include <QByteArray> |
24 | #include <QStandardPaths> | ||
25 | #include <QVector> | 24 | #include <QVector> |
26 | #include <QUuid> | 25 | #include <QUuid> |
27 | #include <QDebug> | 26 | #include <QDebug> |
@@ -33,6 +32,7 @@ | |||
33 | #include "entitybuffer.h" | 32 | #include "entitybuffer.h" |
34 | #include "log.h" | 33 | #include "log.h" |
35 | #include "domain/applicationdomaintype.h" | 34 | #include "domain/applicationdomaintype.h" |
35 | #include "definitions.h" | ||
36 | 36 | ||
37 | namespace Akonadi2 | 37 | namespace Akonadi2 |
38 | { | 38 | { |
@@ -41,7 +41,7 @@ class Pipeline::Private | |||
41 | { | 41 | { |
42 | public: | 42 | public: |
43 | Private(const QString &resourceName) | 43 | Private(const QString &resourceName) |
44 | : storage(QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + "/akonadi2/storage", resourceName, Storage::ReadWrite), | 44 | : storage(Akonadi2::storageLocation(), resourceName, Storage::ReadWrite), |
45 | stepScheduled(false) | 45 | stepScheduled(false) |
46 | { | 46 | { |
47 | } | 47 | } |