diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-10-07 11:57:40 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-10-07 12:07:43 +0200 |
commit | 51e472296b42ea27532c80f68ed741ce204e1e59 (patch) | |
tree | 0a34bcdaaa5ab9b5f6b121de9a140f4e8d420ead /xmloff | |
parent | ac9c9de9af46918ce79afd17f78600b01439d562 (diff) |
loplugin:staticmethods: xmloff
Change-Id: Iad001ce011cd6aff4af9bb2e9129abee7fb935dc
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/core/xmlexp.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/style/FillStyleContext.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/core/xmlexp.cxx b/xmloff/source/core/xmlexp.cxx index 6758df226d24..42be779677cc 100644 --- a/xmloff/source/core/xmlexp.cxx +++ b/xmloff/source/core/xmlexp.cxx @@ -1641,7 +1641,7 @@ void SvXMLExport::ExportStyles_( bool ) { uno::Any aValue = xBitmap->getByName( rStrName ); - aImageStyle.exportXML( rStrName, aValue, *this ); + XMLImageStyle::exportXML( rStrName, aValue, *this ); } catch(const container::NoSuchElementException&) { diff --git a/xmloff/source/style/FillStyleContext.cxx b/xmloff/source/style/FillStyleContext.cxx index 3c8dd438ee23..1c02a68e77b0 100644 --- a/xmloff/source/style/FillStyleContext.cxx +++ b/xmloff/source/style/FillStyleContext.cxx @@ -126,7 +126,7 @@ XMLBitmapStyleContext::XMLBitmapStyleContext( SvXMLImport& rImport, sal_uInt16 n { // start import XMLImageStyle aBitmapStyle; - aBitmapStyle.importXML( xAttrList, maAny, maStrName, rImport ); + XMLImageStyle::importXML( xAttrList, maAny, maStrName, rImport ); } XMLBitmapStyleContext::~XMLBitmapStyleContext() |