summaryrefslogtreecommitdiff
path: root/TelepathyQt/protocol-parameter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TelepathyQt/protocol-parameter.cpp')
-rw-r--r--TelepathyQt/protocol-parameter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TelepathyQt/protocol-parameter.cpp b/TelepathyQt/protocol-parameter.cpp
index bc30f68e..e0960d14 100644
--- a/TelepathyQt/protocol-parameter.cpp
+++ b/TelepathyQt/protocol-parameter.cpp
@@ -39,7 +39,7 @@ struct TP_QT_NO_EXPORT ProtocolParameter::Private : public QSharedData
}
Private(const QString &name, const QString &dbusSignature,
- ConnMgrParamFlag flags, const QVariant &defaultValue)
+ ConnMgrParamFlags flags, const QVariant &defaultValue)
: type(variantTypeFromDBusSignature(dbusSignature))
{
spec.name = name;
@@ -95,7 +95,7 @@ ProtocolParameter::ProtocolParameter(const ParamSpec &spec)
ProtocolParameter::ProtocolParameter(const QString &name,
const QDBusSignature &dbusSignature,
- ConnMgrParamFlag flags,
+ ConnMgrParamFlags flags,
QVariant defaultValue)
: mPriv(new Private(name, dbusSignature.signature(), flags, defaultValue))
{
@@ -103,7 +103,7 @@ ProtocolParameter::ProtocolParameter(const QString &name,
ProtocolParameter::ProtocolParameter(const QString &name,
const QString &dbusSignature,
- ConnMgrParamFlag flags,
+ ConnMgrParamFlags flags,
QVariant defaultValue)
: mPriv(new Private(name, dbusSignature, flags, defaultValue))
{