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/client/QXmppCallManager.h | |
| 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/client/QXmppCallManager.h')
| -rw-r--r-- | src/client/QXmppCallManager.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/QXmppCallManager.h b/src/client/QXmppCallManager.h index 9fe75a95..3ef7b7ca 100644 --- a/src/client/QXmppCallManager.h +++ b/src/client/QXmppCallManager.h @@ -66,7 +66,7 @@ public: enum Direction { IncomingDirection, ///< The call is incoming. - OutgoingDirection, ///< The call is outgoing. + OutgoingDirection ///< The call is outgoing. }; /// This enum is used to describe the state of a call. @@ -75,7 +75,7 @@ public: ConnectingState = 0, ///< The call is being connected. ActiveState = 1, ///< The call is active. DisconnectingState = 2, ///< The call is being disconnected. - FinishedState = 3, ///< The call is finished. + FinishedState = 3 ///< The call is finished. }; ~QXmppCall(); |
