Stay consistant in enums first letter case.
This commit is contained in:
parent
58880bb647
commit
37e72bc7fa
|
|
@ -88,10 +88,10 @@ struct Thru
|
|||
{
|
||||
enum Mode
|
||||
{
|
||||
off = 0, ///< Thru disabled (nothing passes through).
|
||||
full = 1, ///< Fully enabled Thru (every incoming message is 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.
|
||||
Off = 0, ///< Thru disabled (nothing passes through).
|
||||
Full = 1, ///< Fully enabled Thru (every incoming message is 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.
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue