Stay consistant in enums first letter case.

This commit is contained in:
Francois Best 2016-10-27 08:02:34 +02:00
parent 58880bb647
commit 37e72bc7fa
1 changed files with 4 additions and 4 deletions

View File

@ -88,10 +88,10 @@ struct Thru
{ {
enum Mode enum Mode
{ {
off = 0, ///< Thru disabled (nothing passes through). Off = 0, ///< Thru disabled (nothing passes through).
full = 1, ///< Fully enabled Thru (every incoming message is sent back). Full = 1, ///< Fully enabled Thru (every incoming message is sent back).
sameChannel = 2, ///< Only the messages on the Input Channel will be sent back. SameChannel = 2, ///< Only the messages on the Input Channel will be sent back.
differentChannel = 3, ///< All the messages but the ones on the Input Channel will be sent back. DifferentChannel = 3, ///< All the messages but the ones on the Input Channel will be sent back.
}; };
}; };