diff options
author | Oliver Bolte <obo@openoffice.org> | 2007-07-18 07:54:40 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2007-07-18 07:54:40 +0000 |
commit | 41030ff4bb9730d7737cbf5a924aca889cc59c37 (patch) | |
tree | d539e29766cb669875044b57076c74d625de0921 /svtools | |
parent | ebee870653c619a2b7d37fc505006fa192c7cd68 (diff) |
INTEGRATION: CWS fwk67 (1.47.200); FILE MERGED
2007/06/22 11:08:44 cd 1.47.200.1: #i78471# Cleanup - Remove dead code: Mac OS System 9 and earlier
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/edit/texteng.cxx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/svtools/source/edit/texteng.cxx b/svtools/source/edit/texteng.cxx index bfab03694c43..b79afb1e6f4a 100644 --- a/svtools/source/edit/texteng.cxx +++ b/svtools/source/edit/texteng.cxx @@ -4,9 +4,9 @@ * * $RCSfile: texteng.cxx,v $ * - * $Revision: 1.49 $ + * $Revision: 1.50 $ * - * last change: $Author: rt $ $Date: 2007-07-06 10:05:21 $ + * last change: $Author: obo $ $Date: 2007-07-18 08:54:40 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -462,12 +462,8 @@ BOOL TextEngine::DoesKeyChangeText( const KeyEvent& rKeyEvent ) BOOL TextEngine::IsSimpleCharInput( const KeyEvent& rKeyEvent ) { if( rKeyEvent.GetCharCode() >= 32 && rKeyEvent.GetCharCode() != 127 && -#ifndef MAC KEY_MOD1 != (rKeyEvent.GetKeyCode().GetModifier() & ~KEY_SHIFT) && // (ssa) #i45714#: KEY_MOD2 != (rKeyEvent.GetKeyCode().GetModifier() & ~KEY_SHIFT) ) // check for Ctrl and Alt separately -#else - KEY_MOD1 != rKeyEvent.GetKeyCode().GetModifier() ) -#endif { return TRUE; } |