summaryrefslogtreecommitdiffstats
path: root/svx/source/editeng/editdoc.cxx
diff options
context:
space:
mode:
authorMalte Timmermann <mt@openoffice.org>2001-02-20 16:14:46 +0000
committerMalte Timmermann <mt@openoffice.org>2001-02-20 16:14:46 +0000
commit98ed5b4141d9cae44f5f9aed688712f42779e512 (patch)
treefb3c07ee892ee3a00f676b3bf9fc3bb0b440185c /svx/source/editeng/editdoc.cxx
parentfurther impl (diff)
downloadcore-98ed5b4141d9cae44f5f9aed688712f42779e512.tar.gz
core-98ed5b4141d9cae44f5f9aed688712f42779e512.zip
ScriptSpacing, new PortionKind: ExtraSpace
Diffstat (limited to 'svx/source/editeng/editdoc.cxx')
-rw-r--r--svx/source/editeng/editdoc.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/svx/source/editeng/editdoc.cxx b/svx/source/editeng/editdoc.cxx
index 3c6047fc5a90..6c65f4f27787 100644
--- a/svx/source/editeng/editdoc.cxx
+++ b/svx/source/editeng/editdoc.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: editdoc.cxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: mt $ $Date: 2001-01-30 16:52:42 $
+ * last change: $Author: mt $ $Date: 2001-02-20 17:14:46 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -204,9 +204,9 @@ DBG_NAME( EE_ContentNode );
DBG_NAME( EE_CharAttribList );
SfxItemInfo aItemInfos[EDITITEMCOUNT] = {
- { 0, SFX_ITEM_POOLABLE }, // EE_PARA_HANGINGPUNCTUATION
+ { SID_ATTR_PARA_HANGPUNCTUATION, SFX_ITEM_POOLABLE }, // EE_PARA_HANGINGPUNCTUATION
{ SID_ATTR_PARA_FORBIDDEN_RULES, SFX_ITEM_POOLABLE },
- { 0, SFX_ITEM_POOLABLE }, // EE_PARA_ASIANCJKSPACING
+ { SID_ATTR_PARA_SCRIPTSPACE, SFX_ITEM_POOLABLE }, // EE_PARA_ASIANCJKSPACING
{ SID_ATTR_NUMBERING_RULE, SFX_ITEM_POOLABLE }, // EE_PARA_NUMBULL
{ 0, SFX_ITEM_POOLABLE }, // EE_PARA_HYPHENATE
{ 0, SFX_ITEM_POOLABLE }, // EE_PARA_BULLETSTATE
@@ -533,6 +533,7 @@ Size EditLine::CalcTextSize( ParaPortion& rParaPortion )
}
break;
case PORTIONKIND_TAB:
+ case PORTIONKIND_EXTRASPACE:
{
aSz.Width() += pPortion->GetSize().Width();
}