diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2015-03-13 00:16:40 +0100 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2015-03-13 00:16:40 +0100 |
| commit | 05bff44937922c0a7519952201f6854b72d38483 (patch) | |
| tree | 1b05e4263c4621f99a477d13d2362143bdaa8e03 /src/server | |
| parent | 69afc4644606d40f0928a0eb0775ec9a03fdb661 (diff) | |
| download | qxmpp-05bff44937922c0a7519952201f6854b72d38483.tar.gz | |
Remove trailing comma after last item in enums
This allows compilation with GCC in pedantic mode.
Diffstat (limited to 'src/server')
| -rw-r--r-- | src/server/QXmppDialback.h | 2 | ||||
| -rw-r--r-- | src/server/QXmppPasswordChecker.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/server/QXmppDialback.h b/src/server/QXmppDialback.h index 23962e7b..e2114961 100644 --- a/src/server/QXmppDialback.h +++ b/src/server/QXmppDialback.h @@ -38,7 +38,7 @@ public: enum Command { Result, ///< A dialback command between the originating server ///< and the receiving server. - Verify, ///< A dialback command between the receiving server + Verify ///< A dialback command between the receiving server ///< and the authoritative server. }; diff --git a/src/server/QXmppPasswordChecker.h b/src/server/QXmppPasswordChecker.h index db2dd4cb..089bb086 100644 --- a/src/server/QXmppPasswordChecker.h +++ b/src/server/QXmppPasswordChecker.h @@ -35,7 +35,7 @@ class QXMPP_EXPORT QXmppPasswordRequest public: /// This enum is used to describe request types. enum Type { - CheckPassword = 0, + CheckPassword = 0 }; QString domain() const; @@ -64,7 +64,7 @@ public: enum Error { NoError = 0, AuthorizationError, - TemporaryError, + TemporaryError }; QXmppPasswordReply(QObject *parent = 0); |
