summaryrefslogtreecommitdiffstats
path: root/client/clientapi.h
diff options
context:
space:
mode:
Diffstat (limited to 'client/clientapi.h')
-rw-r--r--client/clientapi.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/clientapi.h b/client/clientapi.h
index fae0744..f74e76a 100644
--- a/client/clientapi.h
+++ b/client/clientapi.h
@@ -161,8 +161,8 @@ namespace Domain {
161 161
162class AkonadiDomainType { 162class AkonadiDomainType {
163public: 163public:
164 AkonadiDomainType(const QString &resource, const QString &identifier, qint64 revision) 164 AkonadiDomainType(const QString &resourceName, const QString &identifier, qint64 revision)
165 : mResource(resource), 165 : mResourceName(resourceName),
166 mIdentifier(identifier), 166 mIdentifier(identifier),
167 mRevision(revision) 167 mRevision(revision)
168 { 168 {
@@ -174,7 +174,7 @@ private:
174 /* 174 /*
175 * Each domain object needs to store the resource, identifier, revision triple so we can link back to the storage location. 175 * Each domain object needs to store the resource, identifier, revision triple so we can link back to the storage location.
176 */ 176 */
177 QString mResource; 177 QString mResourceName;
178 QString mIdentifier; 178 QString mIdentifier;
179 qint64 mRevision; 179 qint64 mRevision;
180}; 180};