diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-03-14 08:40:04 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-03-14 08:40:04 +0000 |
commit | 98d4643466566fd6432b964981c8f97b768a119d (patch) | |
tree | 1efed769d804c4c91b34d2d8c2ed1b80094208e8 /svx | |
parent | cbca67cd327d0bbeef9322d32d29101865f0ffe7 (diff) |
INTEGRATION: CWS tl19 (1.96.54); FILE MERGED
2006/02/13 10:55:36 tl 1.96.54.1: #i54913# (Thai) inout sequence checking for EditEngine
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/editeng/editeng.cxx | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/svx/source/editeng/editeng.cxx b/svx/source/editeng/editeng.cxx index faefe56f6637..3617ff8af5fa 100644 --- a/svx/source/editeng/editeng.cxx +++ b/svx/source/editeng/editeng.cxx @@ -4,9 +4,9 @@ * * $RCSfile: editeng.cxx,v $ * - * $Revision: 1.97 $ + * $Revision: 1.98 $ * - * last change: $Author: kz $ $Date: 2006-02-01 12:57:04 $ + * last change: $Author: vg $ $Date: 2006-03-14 09:40:04 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -42,6 +42,10 @@ #define _SVSTDARR_USHORTS #include <svtools/svstdarr.hxx> +#ifndef _SVTOOLS_CTLOPTIONS_HXX +#include <svtools/ctloptions.hxx> +#endif + #include <svxfont.hxx> #include <impedit.hxx> #include <editeng.hxx> @@ -103,6 +107,9 @@ #ifndef _COM_SUN_STAR_DATATRANSFER_CLIPBOARD_XCLIPBOARD_HPP_ #include <com/sun/star/datatransfer/clipboard/XClipboard.hpp> #endif +#ifndef _COM_SUN_STAR_I18N_XINPUTSEQUENCECHECKER_HPP_ +#include <com/sun/star/i18n/InputSequenceCheckMode.hpp> +#endif #include <srchdlg.hxx> @@ -1080,7 +1087,7 @@ sal_Bool EditEngine::PostKeyEvent( const KeyEvent& rKeyEvent, EditView* pEditVie } else { - aCurSel = pImpEditEngine->InsertText( (const EditSelection&)aCurSel, nCharCode, !pEditView->IsInsertMode() ); + aCurSel = pImpEditEngine->InsertText( (const EditSelection&)aCurSel, nCharCode, !pEditView->IsInsertMode(), sal_True ); } // AutoComplete ??? if ( pImpEditEngine->GetStatus().DoAutoComplete() && ( nCharCode != ' ' ) ) |