From f4007aa41999deb5338c715a6867a5797c9f2896 Mon Sep 17 00:00:00 2001 From: RĂ¼diger Timm Date: Wed, 12 Mar 2008 12:01:49 +0000 Subject: INTEGRATION: CWS impresstables2 (1.8.54); FILE MERGED 2007/06/27 16:27:54 cl 1.8.54.2: RESYNC: (1.8-1.9); FILE MERGED 2007/03/20 09:49:03 cl 1.8.54.1: fixed a namespace clash --- forms/source/richtext/richtextvclcontrol.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'forms') diff --git a/forms/source/richtext/richtextvclcontrol.cxx b/forms/source/richtext/richtextvclcontrol.cxx index 367954510ae9..b1cd1a6716b9 100644 --- a/forms/source/richtext/richtextvclcontrol.cxx +++ b/forms/source/richtext/richtextvclcontrol.cxx @@ -4,9 +4,9 @@ * * $RCSfile: richtextvclcontrol.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: kz $ $Date: 2007-05-10 16:28:35 $ + * last change: $Author: rt $ $Date: 2008-03-12 13:01:49 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -292,7 +292,7 @@ namespace frm { if ( EVENT_KEYINPUT == _rNEvt.GetType() ) { - const KeyEvent* pKeyEvent = _rNEvt.GetKeyEvent(); + const ::KeyEvent* pKeyEvent = _rNEvt.GetKeyEvent(); sal_uInt16 nCode = pKeyEvent->GetKeyCode().GetCode(); sal_Bool bShift = pKeyEvent->GetKeyCode().IsShift(); @@ -303,7 +303,7 @@ namespace frm // Ctrl-Tab is used to step out of the control // -> build a new key event without the Ctrl-key, and let the very base class handle it KeyCode aNewCode( KEY_TAB, bShift, sal_False, sal_False ); - KeyEvent aNewEvent( pKeyEvent->GetCharCode(), aNewCode ); + ::KeyEvent aNewEvent( pKeyEvent->GetCharCode(), aNewCode ); Control::KeyInput( aNewEvent ); return 1; // handled } -- cgit