Removed a couple of trailing spaces
This commit is contained in:
parent
1ad3b05664
commit
0a5847c71a
|
@ -346,11 +346,11 @@ public:
|
||||||
if( (bool) m_commandId && (bool) aEvent.m_commandId )
|
if( (bool) m_commandId && (bool) aEvent.m_commandId )
|
||||||
return *m_commandId == *aEvent.m_commandId;
|
return *m_commandId == *aEvent.m_commandId;
|
||||||
}
|
}
|
||||||
|
|
||||||
// BUGFIX: TA_ANY should match EVERYTHING, even TA_NONE (for TC_MESSAGE)
|
// BUGFIX: TA_ANY should match EVERYTHING, even TA_NONE (for TC_MESSAGE)
|
||||||
if( m_actions == TA_ANY && aEvent.m_actions == TA_NONE && aEvent.m_category == TC_MESSAGE)
|
if( m_actions == TA_ANY && aEvent.m_actions == TA_NONE && aEvent.m_category == TC_MESSAGE)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
// BUGFIX: This check must happen after the TC_COMMAND check because otherwise events of
|
// BUGFIX: This check must happen after the TC_COMMAND check because otherwise events of
|
||||||
// the form { TC_COMMAND, TA_NONE } will be incorrectly skipped
|
// the form { TC_COMMAND, TA_NONE } will be incorrectly skipped
|
||||||
if( !( m_actions & aEvent.m_actions ) )
|
if( !( m_actions & aEvent.m_actions ) )
|
||||||
|
|
Loading…
Reference in New Issue