diff options
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/bibliography/framectr.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/bibliography/framectr.cxx b/extensions/source/bibliography/framectr.cxx index 13763bc8a575..812406335365 100644 --- a/extensions/source/bibliography/framectr.cxx +++ b/extensions/source/bibliography/framectr.cxx @@ -616,7 +616,7 @@ void BibFrameController_Impl::dispatch(const util::URL& _rURL, const uno::Sequen vcl::Window* pChild = lcl_GetFocusChild( VCLUnoHelper::GetWindow( xWindow ) ); if(pChild) { - KeyEvent aEvent( 0, KEYFUNC_CUT ); + KeyEvent aEvent( 0, KeyFuncType::CUT ); pChild->KeyInput( aEvent ); } } @@ -625,7 +625,7 @@ void BibFrameController_Impl::dispatch(const util::URL& _rURL, const uno::Sequen vcl::Window* pChild = lcl_GetFocusChild( VCLUnoHelper::GetWindow( xWindow ) ); if(pChild) { - KeyEvent aEvent( 0, KEYFUNC_COPY ); + KeyEvent aEvent( 0, KeyFuncType::COPY ); pChild->KeyInput( aEvent ); } } @@ -634,7 +634,7 @@ void BibFrameController_Impl::dispatch(const util::URL& _rURL, const uno::Sequen vcl::Window* pChild = lcl_GetFocusChild( VCLUnoHelper::GetWindow( xWindow ) ); if(pChild) { - KeyEvent aEvent( 0, KEYFUNC_PASTE ); + KeyEvent aEvent( 0, KeyFuncType::PASTE ); pChild->KeyInput( aEvent ); } } |