diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-27 14:39:19 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-31 12:35:53 +0200 |
commit | 55ee8a75c1a5670d547465a10314a85284283ea6 (patch) | |
tree | d603626f88a6925aa80ab18d7e2dd55f27b4fd91 /include/xmloff/DashStyle.hxx | |
parent | 3daa47e87ad8c51a84750676ca9b9932390dbdcf (diff) |
xmloff: sal_Bool->bool
and remove some unused return values
Change-Id: I957b4befd2e2574a1d202edee440f65325d5388a
Diffstat (limited to 'include/xmloff/DashStyle.hxx')
-rw-r--r-- | include/xmloff/DashStyle.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/xmloff/DashStyle.hxx b/include/xmloff/DashStyle.hxx index 8d523e265e38..eafe70e16399 100644 --- a/include/xmloff/DashStyle.hxx +++ b/include/xmloff/DashStyle.hxx @@ -41,7 +41,7 @@ public: XMLDashStyleImport( SvXMLImport& rImport ); ~XMLDashStyleImport(); - sal_Bool importXML( + void importXML( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList, ::com::sun::star::uno::Any& rValue, @@ -57,7 +57,7 @@ public: XMLDashStyleExport( SvXMLExport& rExport ); ~XMLDashStyleExport(); - sal_Bool exportXML( const OUString& rStrName, + bool exportXML( const OUString& rStrName, const ::com::sun::star::uno::Any& rValue ); }; |