From e1a517166bebdde79f7d9b04f9d9861f3bc904aa Mon Sep 17 00:00:00 2001 From: Kurt Zenker Date: Thu, 26 Feb 2004 12:43:24 +0000 Subject: 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. --- automation/source/server/recorder.cxx | 10 +++++----- 1 file 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 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; -- cgit v1.2.3