diff options
author | Michael Brauer <mib@openoffice.org> | 2001-03-29 07:39:26 +0000 |
---|---|---|
committer | Michael Brauer <mib@openoffice.org> | 2001-03-29 07:39:26 +0000 |
commit | 23b386160e7359e72aa55f7d8726484c33b80c69 (patch) | |
tree | 5038799a0937e0dc95bcfa12d805d2d928b36e2f | |
parent | 9a2b7f0d5d637f3a5d98306a969bbdbe54df3ec8 (diff) |
#85415#: negative table indents in xml documents
-rw-r--r-- | svx/source/items/frmitems.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/items/frmitems.cxx b/svx/source/items/frmitems.cxx index a12c1d12ff29..2af9948b939b 100644 --- a/svx/source/items/frmitems.cxx +++ b/svx/source/items/frmitems.cxx @@ -2,9 +2,9 @@ * * $RCSfile: frmitems.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: mib $ $Date: 2001-02-06 15:29:12 $ + * last change: $Author: mib $ $Date: 2001-03-29 08:39:26 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -658,7 +658,7 @@ sal_Bool SvxLRSpaceItem::importXML( const OUString& rValue, sal_uInt16 nMemberId if( rValue.indexOf( sal_Unicode('%') ) != -1 ) bOk = rUnitConverter.convertPercent( nProp, rValue ); else - bOk = rUnitConverter.convertMeasure( nAbs, rValue, 0x0000, 0xffff ); + bOk = rUnitConverter.convertMeasure( nAbs, rValue ); if( bOk ) { |