summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Seigo <aseigo@kde.org>2014-12-15 20:49:13 +0100
committerAaron Seigo <aseigo@kde.org>2014-12-15 20:49:13 +0100
commit52787e9469cc1892e9e221b877d0ffd81d7a817a (patch)
tree9d5212a3c00a0c001af181cdabd7431d121340c0
parente2ddbe9af656cef7a4384b5f9f5e9b6acec411e9 (diff)
downloadsink-52787e9469cc1892e9e221b877d0ffd81d7a817a.tar.gz
sink-52787e9469cc1892e9e221b877d0ffd81d7a817a.zip
it's a name, not a resource (that is going to be a class soon)
-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};