From 11908a42ee9bf736ed205b89d152ba35e46a4baf Mon Sep 17 00:00:00 2001 From: Oliver Specht Date: Mon, 19 Mar 2001 07:39:10 +0000 Subject: allow all numbering types > 0 --- sw/source/core/unocore/unosett.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sw/source') 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; -- cgit