summaryrefslogtreecommitdiffstats
path: root/svx/source/editeng/editdoc.cxx
diff options
context:
space:
mode:
authorMalte Timmermann <mt@openoffice.org>2002-07-12 09:31:21 +0000
committerMalte Timmermann <mt@openoffice.org>2002-07-12 09:31:21 +0000
commitc0cc99deb962ec60e60fe59963f36b84464211b6 (patch)
tree1cd3bbf8077aa488f5041ce7cde0b62aa92b74dd /svx/source/editeng/editdoc.cxx
parent#101282# use IsPrinting() instead of IsJobActive() to check IsBusy (diff)
downloadcore-c0cc99deb962ec60e60fe59963f36b84464211b6.tar.gz
core-c0cc99deb962ec60e60fe59963f36b84464211b6.zip
#101117# Start Bidi support
Diffstat (limited to 'svx/source/editeng/editdoc.cxx')
-rw-r--r--svx/source/editeng/editdoc.cxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/svx/source/editeng/editdoc.cxx b/svx/source/editeng/editdoc.cxx
index 4e36e296e595..41f6b65c6327 100644
--- a/svx/source/editeng/editdoc.cxx
+++ b/svx/source/editeng/editdoc.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: editdoc.cxx,v $
*
- * $Revision: 1.26 $
+ * $Revision: 1.27 $
*
- * last change: $Author: mhu $ $Date: 2002-05-10 21:17:12 $
+ * last change: $Author: mt $ $Date: 2002-07-12 10:31:16 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -282,6 +282,7 @@ USHORT aV4Map[] = {
SV_IMPL_PTRARR( ContentList, ContentNode* );
SV_IMPL_VARARR( ScriptTypePosInfos, ScriptTypePosInfo );
+SV_IMPL_VARARR( WritingDirectionInfos, WritingDirectionInfo );
// SV_IMPL_VARARR( ExtraCharInfos, ExtraCharInfo );
@@ -433,12 +434,13 @@ EditLine::EditLine()
{
DBG_CTOR( EE_EditLine, 0 );
- nStart = nEnd = 0; // kommt weg ?!
+ nStart = nEnd = 0;
nStartPortion = 0; // damit in ungueltiger Zeile ohne Portions von einer gueltigen Zeile mit der Portion Nr0 unterscieden werden kann.
nEndPortion = 0;
nHeight = 0;
nStartPosX = 0;
nTxtHeight = 0;
+ nTxtWidth = 0;
nCrsrHeight = 0;
nMaxAscent = 0;
bHangingPunctuation = FALSE;
@@ -458,6 +460,7 @@ EditLine::EditLine( const EditLine& r )
nHeight = 0;
nStartPosX = 0;
nTxtHeight = 0;
+ nTxtWidth = 0;
nCrsrHeight = 0;
nMaxAscent = 0;
bInvalid = TRUE;