diff options
Diffstat (limited to 'xmloff/source/style/DashStyle.cxx')
-rw-r--r-- | xmloff/source/style/DashStyle.cxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/xmloff/source/style/DashStyle.cxx b/xmloff/source/style/DashStyle.cxx index 6743026482dd..3ba46fe8842d 100644 --- a/xmloff/source/style/DashStyle.cxx +++ b/xmloff/source/style/DashStyle.cxx @@ -85,7 +85,7 @@ XMLDashStyleImport::~XMLDashStyleImport() { } -sal_Bool XMLDashStyleImport::importXML( +void XMLDashStyleImport::importXML( const uno::Reference< xml::sax::XAttributeList >& xAttrList, uno::Any& rValue, OUString& rStrName ) @@ -203,8 +203,6 @@ sal_Bool XMLDashStyleImport::importXML( rStrName, aDisplayName ); rStrName = aDisplayName; } - - return sal_True; } // Export @@ -218,11 +216,11 @@ XMLDashStyleExport::~XMLDashStyleExport() { } -sal_Bool XMLDashStyleExport::exportXML( +bool XMLDashStyleExport::exportXML( const OUString& rStrName, const uno::Any& rValue ) { - sal_Bool bRet = sal_False; + bool bRet = false; SvXMLUnitConverter & rUnitConverter = rExport.GetMM100UnitConverter(); |