From 0a5847c71aef07b0e1cfe04d16bed35a2d7774a2 Mon Sep 17 00:00:00 2001 From: Andrew Zonenberg Date: Sun, 12 Jul 2015 21:57:07 -0700 Subject: [PATCH] Removed a couple of trailing spaces --- include/tool/tool_event.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/tool/tool_event.h b/include/tool/tool_event.h index 3bd62ec3cf..f1cd8687d7 100644 --- a/include/tool/tool_event.h +++ b/include/tool/tool_event.h @@ -346,11 +346,11 @@ public: if( (bool) m_commandId && (bool) aEvent.m_commandId ) return *m_commandId == *aEvent.m_commandId; } - + // 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) return true; - + // BUGFIX: This check must happen after the TC_COMMAND check because otherwise events of // the form { TC_COMMAND, TA_NONE } will be incorrectly skipped if( !( m_actions & aEvent.m_actions ) )