diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-03-12 12:01:49 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-03-12 12:01:49 +0000 |
commit | f4007aa41999deb5338c715a6867a5797c9f2896 (patch) | |
tree | f9b377b0a1b4c340c652bb3c5c08eea4dd5596ac /forms/source | |
parent | ea8592610543306feccf877295e27ba5108a57df (diff) |
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
Diffstat (limited to 'forms/source')
-rw-r--r-- | forms/source/richtext/richtextvclcontrol.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
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 } |