diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-03-14 08:39:50 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-03-14 08:39:50 +0000 |
commit | cbca67cd327d0bbeef9322d32d29101865f0ffe7 (patch) | |
tree | fb0d1bdffcd7f371d61e645f9cc4f716f11db164 /svx | |
parent | 5de665083efe7482c6e9fb1cf2324a41897dbf43 (diff) |
INTEGRATION: CWS tl19 (1.23.58); FILE MERGED
2006/02/13 10:55:36 tl 1.23.58.1: #i54913# (Thai) inout sequence checking for EditEngine
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/editeng/editdoc.hxx | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/svx/source/editeng/editdoc.hxx b/svx/source/editeng/editdoc.hxx index 85acced21b6a..a686028d1ffc 100644 --- a/svx/source/editeng/editdoc.hxx +++ b/svx/source/editeng/editdoc.hxx @@ -4,9 +4,9 @@ * * $RCSfile: editdoc.hxx,v $ * - * $Revision: 1.23 $ + * $Revision: 1.24 $ * - * last change: $Author: rt $ $Date: 2006-01-10 14:01:03 $ + * last change: $Author: vg $ $Date: 2006-03-14 09:39:50 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -36,6 +36,10 @@ #ifndef _EDITDOC_HXX #define _EDITDOC_HXX +#ifndef _COM_SUN_STAR_I18N_XEXTENDEDINPUTSEQUENCECHECKER_HDL_ +#include <com/sun/star/i18n/XExtendedInputSequenceChecker.hpp> +#endif + #include <editattr.hxx> #include <edtspell.hxx> #include <svxfont.hxx> @@ -58,6 +62,7 @@ class ImpEditEngine; class SvxTabStop; +class SvtCTLOptions; DBG_NAMEEX( EE_TextPortion ); @@ -660,7 +665,7 @@ public: const EditPaM& Max() const { return aEndPaM; } BOOL HasRange() const { return aStartPaM != aEndPaM; } - BOOL IsInvalid(); + BOOL IsInvalid() const; BOOL DbgIsBuggy( EditDoc& rDoc ); BOOL Adjust( const ContentList& rNodes ); |