diff options
author | Oliver Specht <os@openoffice.org> | 2001-03-19 07:39:10 +0000 |
---|---|---|
committer | Oliver Specht <os@openoffice.org> | 2001-03-19 07:39:10 +0000 |
commit | 11908a42ee9bf736ed205b89d152ba35e46a4baf (patch) | |
tree | cebe00f51c66f10bac4c19577ac9ad77dc1971f4 /sw/source | |
parent | 746dc20edc1ca055390d75356928e9504a15a442 (diff) |
allow all numbering types > 0
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/core/unocore/unosett.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/unocore/unosett.cxx b/sw/source/core/unocore/unosett.cxx index 49cdf4039036..0a15aa6cc2ef 100644 --- a/sw/source/core/unocore/unosett.cxx +++ b/sw/source/core/unocore/unosett.cxx @@ -2,9 +2,9 @@ * * $RCSfile: unosett.cxx,v $ * - * $Revision: 1.19 $ + * $Revision: 1.20 $ * - * last change: $Author: mib $ $Date: 2001-03-09 07:41:13 $ + * last change: $Author: os $ $Date: 2001-03-19 08:39:10 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1947,7 +1947,7 @@ void SwXNumberingRules::setNumberingRuleByIndex( { sal_Int16 nSet; pData->aVal >>= nSet; - if(nSet <= (sal_Int16)SVX_NUM_CHARS_LOWER_LETTER_N) + if(nSet >= 0) aFmt.SetNumberingType(nSet); else bWrongArg = sal_True; |