summaryrefslogtreecommitdiff
path: root/sw/source/uibase/cctrl/actctrl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/uibase/cctrl/actctrl.cxx')
-rw-r--r--sw/source/uibase/cctrl/actctrl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/uibase/cctrl/actctrl.cxx b/sw/source/uibase/cctrl/actctrl.cxx
index c20a5b23a38e..05cda9e485be 100644
--- a/sw/source/uibase/cctrl/actctrl.cxx
+++ b/sw/source/uibase/cctrl/actctrl.cxx
@@ -33,7 +33,7 @@ bool NumEditAction::Notify( NotifyEvent& rNEvt )
if ( rNEvt.GetType() == EVENT_KEYINPUT )
{
const KeyEvent* pKEvt = rNEvt.GetKeyEvent();
- const KeyCode aKeyCode = pKEvt->GetKeyCode();
+ const vcl::KeyCode aKeyCode = pKEvt->GetKeyCode();
const sal_uInt16 nModifier = aKeyCode.GetModifier();
if( aKeyCode.GetCode() == KEY_RETURN &&
!nModifier)
@@ -50,7 +50,7 @@ bool NumEditAction::Notify( NotifyEvent& rNEvt )
void ReturnActionEdit::KeyInput( const KeyEvent& rEvt)
{
- const KeyCode aKeyCode = rEvt.GetKeyCode();
+ const vcl::KeyCode aKeyCode = rEvt.GetKeyCode();
const sal_uInt16 nModifier = aKeyCode.GetModifier();
if( aKeyCode.GetCode() == KEY_RETURN &&
!nModifier)