diff options
author | Oliver Specht <os@openoffice.org> | 2001-02-23 11:29:54 +0000 |
---|---|---|
committer | Oliver Specht <os@openoffice.org> | 2001-02-23 11:29:54 +0000 |
commit | 8f221e774f22343e8c5fd833d89f70a9076df23a (patch) | |
tree | 7e58b974b70fb894714f647611bbfce8e5160f70 /svx/source/unodraw | |
parent | b5a84087cb8ade12df013435312fad3ebc1e4576 (diff) |
Complete use of DefaultNumbering component
Diffstat (limited to 'svx/source/unodraw')
-rw-r--r-- | svx/source/unodraw/unonrule.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/unodraw/unonrule.cxx b/svx/source/unodraw/unonrule.cxx index 95b55137f976..af42f5cae573 100644 --- a/svx/source/unodraw/unonrule.cxx +++ b/svx/source/unodraw/unonrule.cxx @@ -2,9 +2,9 @@ * * $RCSfile: unonrule.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: cl $ $Date: 2001-01-17 17:06:54 $ + * last change: $Author: os $ $Date: 2001-02-23 12:29:33 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -256,7 +256,7 @@ uno::Sequence<beans::PropertyValue> SvxUnoNumberingRules::getNumberingRuleByInde uno::Any aVal; { - aVal <<= (sal_Int16)rFmt.GetNumType(); + aVal <<= rFmt.GetNumberingType(); beans::PropertyValue aAlignProp( OUString(RTL_CONSTASCII_USTRINGPARAM(UNO_NAME_NRULE_NUMBERINGTYPE)), -1, aVal, beans::PropertyState_DIRECT_VALUE); pArray[nIdx++] = aAlignProp; } @@ -367,7 +367,7 @@ void SvxUnoNumberingRules::setNumberingRuleByIndex( const uno::Sequence< beans:: case SVX_NUM_CHARS_LOWER_LETTER: case SVX_NUM_ARABIC: case SVX_NUM_NUMBER_NONE: - aFmt.SetNumType((SvxExtNumType)nSet); + aFmt.SetNumberingType((SvxExtNumType)nSet); continue; } } |