aboutsummaryrefslogtreecommitdiff
path: root/lib/settings.h
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2021-12-28 09:01:37 +0100
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2021-12-28 09:08:15 +0100
commit0d9428bfbd997ac2073a470e59749cda81e0b213 (patch)
tree5796a35d956038bfdbbbe4e43cb80a3f8380b2f3 /lib/settings.h
parent7bb59b7a4a8b8804fa1eb5e631463da6a6cfdf84 (diff)
downloadlibquotient-0d9428bfbd997ac2073a470e59749cda81e0b213.tar.gz
libquotient-0d9428bfbd997ac2073a470e59749cda81e0b213.zip
Settings classes: unify on QUO_ macro prefix
At some point macros were prepended with QTNT (pronounced "cute-n't", "Quotient" with vowels dropped) but that didn't go very far. Having forgotten about this, I introduced QUO prefix in a few places. Being initial letters of "Quotient", QUO feels more understandable (and coincidentally is a well-known Latin word); so let's unify on this.
Diffstat (limited to 'lib/settings.h')
-rw-r--r--lib/settings.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/settings.h b/lib/settings.h
index efd0d714..3cab8958 100644
--- a/lib/settings.h
+++ b/lib/settings.h
@@ -104,7 +104,7 @@ private:
QString groupPath;
};
-#define QTNT_DECLARE_SETTING(type, propname, setter) \
+#define QUO_DECLARE_SETTING(type, propname, setter) \
Q_PROPERTY(type propname READ propname WRITE setter) \
public: \
type propname() const; \
@@ -112,7 +112,7 @@ public: \
\
private:
-#define QTNT_DEFINE_SETTING(classname, type, propname, qsettingname, \
+#define QUO_DEFINE_SETTING(classname, type, propname, qsettingname, \
defaultValue, setter) \
type classname::propname() const \
{ \
@@ -127,9 +127,9 @@ private:
class AccountSettings : public SettingsGroup {
Q_OBJECT
Q_PROPERTY(QString userId READ userId CONSTANT)
- QTNT_DECLARE_SETTING(QString, deviceId, setDeviceId)
- QTNT_DECLARE_SETTING(QString, deviceName, setDeviceName)
- QTNT_DECLARE_SETTING(bool, keepLoggedIn, setKeepLoggedIn)
+ QUO_DECLARE_SETTING(QString, deviceId, setDeviceId)
+ QUO_DECLARE_SETTING(QString, deviceName, setDeviceName)
+ QUO_DECLARE_SETTING(bool, keepLoggedIn, setKeepLoggedIn)
Q_PROPERTY(QByteArray encryptionAccountPickle READ encryptionAccountPickle
WRITE setEncryptionAccountPickle)
public: