diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-03-22 00:48:24 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-03-22 00:48:40 +0100 |
commit | 3dd40efee6ca280ef205c75517621b5f8d5089cd (patch) | |
tree | 5f814be826dcc4caf45c12a03942567fe4cd819a /sfx2 | |
parent | 630ccf5b3be084916065409033c182a91b418850 (diff) |
strg is ctrl in english
Change-Id: I569bfa7c9d461a5af0ef6e6f37bf717255936b78
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/newhelp.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sfx2/source/appl/newhelp.cxx b/sfx2/source/appl/newhelp.cxx index 40f9420ce361..df962be1b124 100644 --- a/sfx2/source/appl/newhelp.cxx +++ b/sfx2/source/appl/newhelp.cxx @@ -1809,7 +1809,7 @@ long SfxHelpIndexWindow_Impl::PreNotify( NotifyEvent& rNEvt ) } else if ( bCtrl ) { - // <STRG><TAB> moves through the pages + // <CTRL><TAB> moves through the pages if ( nPageId < HELP_INDEX_PAGE_LAST ) nPageId++; else @@ -2316,8 +2316,8 @@ bool SfxHelpTextWindow_Impl::isHandledKey( const KeyCode& _rKeyCode ) bool bRet = false; sal_uInt16 nCode = _rKeyCode.GetCode(); - // the keys <STRG><A> (select all), <STRG><C> (copy), - // <STRG><F> (find), <STRG><P> (print) and <STRG><W> (close window) + // the keys <CTRL><A> (select all), <CTRL><C> (copy), + // <CTRL><F> (find), <CTRL><P> (print) and <CTRL><W> (close window) // were handled in help if ( _rKeyCode.IsMod1() && ( KEY_A == nCode || KEY_C == nCode || KEY_F == nCode || KEY_P == nCode || KEY_W == nCode ) ) @@ -2632,7 +2632,7 @@ long SfxHelpTextWindow_Impl::PreNotify( NotifyEvent& rNEvt ) } else if ( rKeyCode.IsMod1() && ( KEY_F4 == nKey || KEY_W == nKey ) ) { - // <STRG><F4> or <STRG><W> -> close top frame + // <CTRL><F4> or <CTRL><W> -> close top frame pHelpWin->CloseWindow(); nDone = 1; } @@ -3229,7 +3229,7 @@ long SfxHelpWindow_Impl::PreNotify( NotifyEvent& rNEvt ) } else if ( rKeyCode.IsMod1() && ( KEY_F4 == nKey || KEY_W == nKey ) ) { - // <STRG><F4> or <STRG><W> -> close top frame + // <CTRL><F4> or <CTRL><W> -> close top frame CloseWindow(); bHandled = sal_True; } |