diff options
author | Kurt Zenker <kz@openoffice.org> | 2004-02-26 12:43:24 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2004-02-26 12:43:24 +0000 |
commit | e1a517166bebdde79f7d9b04f9d9861f3bc904aa (patch) | |
tree | e3cdbd5220ba96b90454f461b512864402d25f2e /automation/source/server/recorder.cxx | |
parent | 24c61eda38dcf2ae43ce5178c715ff6e9bada6d6 (diff) |
INTEGRATION: CWS sb13 (1.3.24); FILE MERGED
2004/02/06 08:20:18 sb 1.3.24.1: #i19699# Adapted to tightened tools/string.hxx.
Diffstat (limited to 'automation/source/server/recorder.cxx')
-rw-r--r-- | automation/source/server/recorder.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/automation/source/server/recorder.cxx b/automation/source/server/recorder.cxx index c7c69829f4c9..34bded8b85d9 100644 --- a/automation/source/server/recorder.cxx +++ b/automation/source/server/recorder.cxx @@ -2,9 +2,9 @@ * * $RCSfile: recorder.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: kz $ $Date: 2003-08-25 15:47:20 $ + * last change: $Author: kz $ $Date: 2004-02-26 13:43:24 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -637,12 +637,12 @@ IMPL_LINK( MacroRecorder, EventListener, VclSimpleEvent*, pEvent ) } else { // not a regular key, transfer KeyCode - aKeyString += 1; // mask it + aKeyString += sal_Unicode(1); // mask it // extra for '>' which is coded as <SHIFT LESS> if ( pKeyEvent->GetCharCode() == '>' ) - aKeyString += ( KEY_GREATER | aKeyCode.GetAllModifier() & ~KEY_SHIFT ); + aKeyString += sal_Unicode( KEY_GREATER | aKeyCode.GetAllModifier() & ~KEY_SHIFT ); else - aKeyString += ( aKeyCode.GetCode() | aKeyCode.GetAllModifier() ); + aKeyString += sal_Unicode( aKeyCode.GetCode() | aKeyCode.GetAllModifier() ); } pKeyWin = pWin; Window *pIdWin = pWin; |