summaryrefslogtreecommitdiffstats
path: root/examples/client/main.cpp
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2015-08-13 01:27:21 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2015-08-13 01:27:21 +0200
commitb6d5d206de4d02149c6530236154283bf834087a (patch)
tree0d57764b674df3ffee1df3f3e9fb1690ae06bbdc /examples/client/main.cpp
parent7c9ae062101b5dc8f963c70fb753f8346a9b5c48 (diff)
downloadsink-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.cpp4
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>
73class AkonadiListModel : public QAbstractListModel 73class AkonadiListModel : public QAbstractListModel
74{ 74{
75public: 75public:
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
118private: 118private:
119 QSharedPointer<async::ResultEmitter<T> > mEmitter; 119 QSharedPointer<Akonadi2::ResultEmitter<T> > mEmitter;
120 QStringList mStringList; 120 QStringList mStringList;
121}; 121};
122 122