diff options
author | Michael Brauer <mib@openoffice.org> | 2001-01-08 09:05:57 +0000 |
---|---|---|
committer | Michael Brauer <mib@openoffice.org> | 2001-01-08 09:05:57 +0000 |
commit | ede902ae98f64416f331623759741763e5ed5f80 (patch) | |
tree | aaf62144f2b08b3ccc6bd99b0f12acc896719a82 /xmloff | |
parent | 80737089ec0b87ffec594f460d53be0891c7092d (diff) |
#82001#: Removed try/catch when setting numbering rule
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/style/xmlnumi.cxx | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/xmloff/source/style/xmlnumi.cxx b/xmloff/source/style/xmlnumi.cxx index cc9253c49f8d..cf5e95713764 100644 --- a/xmloff/source/style/xmlnumi.cxx +++ b/xmloff/source/style/xmlnumi.cxx @@ -2,9 +2,9 @@ * * $RCSfile: xmlnumi.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: mib $ $Date: 2000-12-13 15:59:56 $ + * last change: $Author: mib $ $Date: 2001-01-08 10:05:57 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -947,13 +947,7 @@ void SvxXMLListStyleContext::FillUnoNumRule( pLevelStyle->GetProperties( pI18NMap ); Any aAny; aAny <<= aProps; - try - { - rNumRule->replaceByIndex( nLevel, aAny ); - } - catch(...) - { - } + rNumRule->replaceByIndex( nLevel, aAny ); } } } |