diff options
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/table/tablecontroller.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/table/tablecontroller.cxx b/svx/source/table/tablecontroller.cxx index 1a888ba39423..1cb3035e4abb 100644 --- a/svx/source/table/tablecontroller.cxx +++ b/svx/source/table/tablecontroller.cxx @@ -1291,7 +1291,7 @@ sal_uInt16 SvxTableController::getKeyboardAction( const KeyEvent& rKEvt, Window* { if( bMod1 && !bMod2 ) { - // strg + home jumps to first cell + // ctrl + home jumps to first cell nAction = ACTION_GOTO_FIRST_CELL; } else if( !bMod1 && bMod2 ) @@ -1309,7 +1309,7 @@ sal_uInt16 SvxTableController::getKeyboardAction( const KeyEvent& rKEvt, Window* { if( bMod1 && !bMod2 ) { - // strg + end jumps to last cell + // ctrl + end jumps to last cell nAction = ACTION_GOTO_LAST_CELL; } else if( !bMod1 && bMod2 ) |