aboutsummaryrefslogtreecommitdiff
path: root/src/base
diff options
context:
space:
mode:
author0xd34df00d <0xd34df00d@gmail.com>2012-10-22 17:21:42 +0400
committer0xd34df00d <0xd34df00d@gmail.com>2012-10-22 17:21:42 +0400
commit1ba3b087975e523bb05b0703a5b0fa8392b7429b (patch)
tree712e93f01ccc4451a4c438f11587f6e4c0b27607 /src/base
parentc0fbd4fefd1127642134a6f05e1c630d1a3a16e4 (diff)
downloadqxmpp-1ba3b087975e523bb05b0703a5b0fa8392b7429b.tar.gz
Avoid extra ';' in QXmppVCardIq declaration.
Otherwise clang, for example, complains a lot about this with the -pedantic option.
Diffstat (limited to 'src/base')
-rw-r--r--src/base/QXmppVCardIq.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/base/QXmppVCardIq.h b/src/base/QXmppVCardIq.h
index 712b12b7..e1de81b6 100644
--- a/src/base/QXmppVCardIq.h
+++ b/src/base/QXmppVCardIq.h
@@ -48,7 +48,7 @@ public:
Postal = 0x4,
Preferred = 0x8
};
- Q_DECLARE_FLAGS(Type, TypeFlag);
+ Q_DECLARE_FLAGS(Type, TypeFlag)
QXmppVCardAddress();
QXmppVCardAddress(const QXmppVCardAddress &other);
@@ -97,7 +97,7 @@ public:
Preferred = 0x8,
X400 = 0x10
};
- Q_DECLARE_FLAGS(Type, TypeFlag);
+ Q_DECLARE_FLAGS(Type, TypeFlag)
QXmppVCardEmail();
QXmppVCardEmail(const QXmppVCardEmail &other);
@@ -142,7 +142,7 @@ public:
PCS = 0x800,
Preferred = 0x1000
};
- Q_DECLARE_FLAGS(Type, TypeFlag);
+ Q_DECLARE_FLAGS(Type, TypeFlag)
QXmppVCardPhone();
QXmppVCardPhone(const QXmppVCardPhone &other);