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 /examples/client/main.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 'examples/client/main.cpp')
-rw-r--r-- | examples/client/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/client/main.cpp b/examples/client/main.cpp index 9445599..a0ca51b 100644 --- a/examples/client/main.cpp +++ b/examples/client/main.cpp | |||
@@ -73,7 +73,7 @@ template<class T> | |||
73 | class AkonadiListModel : public QAbstractListModel | 73 | class AkonadiListModel : public QAbstractListModel |
74 | { | 74 | { |
75 | public: | 75 | public: |
76 | AkonadiListModel(const QSharedPointer<async::ResultEmitter<T> > &emitter, const QByteArray &property) | 76 | AkonadiListModel(const QSharedPointer<Akonadi2::ResultEmitter<T> > &emitter, const QByteArray &property) |
77 | :QAbstractListModel(), | 77 | :QAbstractListModel(), |
78 | mEmitter(emitter) | 78 | mEmitter(emitter) |
79 | { | 79 | { |
@@ -116,7 +116,7 @@ public: | |||
116 | } | 116 | } |
117 | 117 | ||
118 | private: | 118 | private: |
119 | QSharedPointer<async::ResultEmitter<T> > mEmitter; | 119 | QSharedPointer<Akonadi2::ResultEmitter<T> > mEmitter; |
120 | QStringList mStringList; | 120 | QStringList mStringList; |
121 | }; | 121 | }; |
122 | 122 | ||