summaryrefslogtreecommitdiffstats
path: root/src/remoteobjects/qremoteobjectnode_p.h
diff options
context:
space:
mode:
authorKevin Funk <kevin.funk.ford@kdab.com>2017-09-26 18:50:38 +0200
committerKevin Funk <kevin.funk@kdab.com>2017-10-06 08:36:44 +0000
commit8cb12d9903881cecc5d9e1b6141d2f135ced65b5 (patch)
tree54efaca4f77007e29dafb0c8363487f3b51eaabc /src/remoteobjects/qremoteobjectnode_p.h
parent25bbe0b0111e684e409fbf842af1d1c134da82db (diff)
Prefix abstract class with "Abstract"
Rename QRemoteObjectPersistedStore to QRemoteObjectAbstractPersistedStore to reflect that this class contains virtual functions Change-Id: I39a721332ace9d5c49afd58cfdf3d083c8e01ff0 Reviewed-by: Michael Brasser <michael.brasser@live.com>
Diffstat (limited to 'src/remoteobjects/qremoteobjectnode_p.h')
-rw-r--r--src/remoteobjects/qremoteobjectnode_p.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/remoteobjects/qremoteobjectnode_p.h b/src/remoteobjects/qremoteobjectnode_p.h
index ce108bf..727d2e1 100644
--- a/src/remoteobjects/qremoteobjectnode_p.h
+++ b/src/remoteobjects/qremoteobjectnode_p.h
@@ -73,13 +73,13 @@ QT_BEGIN_NAMESPACE
class QRemoteObjectRegistry;
class QRegistrySource;
-class QRemoteObjectPersistedStorePrivate : public QObjectPrivate
+class QRemoteObjectAbstractPersistedStorePrivate : public QObjectPrivate
{
public:
- QRemoteObjectPersistedStorePrivate();
- virtual ~QRemoteObjectPersistedStorePrivate();
+ QRemoteObjectAbstractPersistedStorePrivate();
+ virtual ~QRemoteObjectAbstractPersistedStorePrivate();
- Q_DECLARE_PUBLIC(QRemoteObjectPersistedStore)
+ Q_DECLARE_PUBLIC(QRemoteObjectAbstractPersistedStore)
};
class QRemoteObjectNodePrivate : public QObjectPrivate
@@ -135,7 +135,7 @@ public:
QRemoteObjectPackets::ObjectInfoList rxObjects;
QVariantList rxArgs;
QVariant rxValue;
- QRemoteObjectPersistedStore *persistedStore;
+ QRemoteObjectAbstractPersistedStore *persistedStore;
Q_DECLARE_PUBLIC(QRemoteObjectNode)
};