diff options
author | Christian Lippka <cl@openoffice.org> | 2001-06-29 11:17:00 +0000 |
---|---|---|
committer | Christian Lippka <cl@openoffice.org> | 2001-06-29 11:17:00 +0000 |
commit | f55e351dd228dedbe6f6ca6b571d98844a1a41b9 (patch) | |
tree | c4568c1b4cb7c7ca7ac0c3319728f7ba4cf4a17c /svx/source/unodraw | |
parent | 01cd33fb4f66013eb72045a703c4c003893e10af (diff) |
#85861# allow zero bullet chars
Diffstat (limited to 'svx/source/unodraw')
-rw-r--r-- | svx/source/unodraw/unonrule.cxx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/svx/source/unodraw/unonrule.cxx b/svx/source/unodraw/unonrule.cxx index af42f5cae573..a3818eec575c 100644 --- a/svx/source/unodraw/unonrule.cxx +++ b/svx/source/unodraw/unonrule.cxx @@ -2,9 +2,9 @@ * * $RCSfile: unonrule.cxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: os $ $Date: 2001-02-23 12:29:33 $ + * last change: $Author: cl $ $Date: 2001-06-29 12:17:00 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -409,8 +409,12 @@ void SvxUnoNumberingRules::setNumberingRuleByIndex( const uno::Sequence< beans:: if(aStr.getLength()) { aFmt.SetBulletChar(aStr[0]); - continue; } + else + { + aFmt.SetBulletChar(0); + } + continue; } } else if(rPropName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM(UNO_NAME_NRULE_ADJUST))) |