summaryrefslogtreecommitdiff
path: root/automation
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2009-01-29 10:02:54 +0000
committerKurt Zenker <kz@openoffice.org>2009-01-29 10:02:54 +0000
commit15721208baeb76ff049c5287d180e38e90821eaa (patch)
tree9874918ecf2e1aa01cea608fe2ab321d552514a5 /automation
parentfd648c0582c85ee3f83e8c013f23b6fd17704b0a (diff)
CWS-TOOLING: integrate CWS cmcfixes52
2009-01-05 10:49:04 +0100 cmc r265860 : #i97763# remove low-hanging warnings
Diffstat (limited to 'automation')
-rw-r--r--automation/source/server/recorder.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/automation/source/server/recorder.cxx b/automation/source/server/recorder.cxx
index 9c76533c7758..98e09de655ad 100644
--- a/automation/source/server/recorder.cxx
+++ b/automation/source/server/recorder.cxx
@@ -706,7 +706,7 @@ IMPL_LINK( MacroRecorder, EventListener, VclSimpleEvent*, pEvent )
aKeyString += sal_Unicode(1); // mask it
// extra for '>' which is coded as <SHIFT GREATER>
if ( pKeyEvent->GetCharCode() == '>' )
- aKeyString += sal_Unicode( KEY_GREATER | aKeyCode.GetAllModifier() & ~KEY_SHIFT );
+ aKeyString += sal_Unicode( KEY_GREATER | (aKeyCode.GetAllModifier() & ~KEY_SHIFT) );
else
aKeyString += sal_Unicode( aKeyCode.GetCode() | aKeyCode.GetAllModifier() );
}