diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-10-07 11:59:50 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-10-07 12:07:43 +0200 |
commit | 358d88d08bbbee155aaf9eeb49846f75cbead1c5 (patch) | |
tree | eef0fd7fc144d74ed2c3f6ecc3b4c9b405b1f168 /svx/source/xml | |
parent | b9589f237b5d74f8b70f9478a5c04285b6fcfc5a (diff) |
loplugin:staticmethods: svx
Change-Id: If03d9797fddd88662cf7d0ba2a70c2841983b37b
Diffstat (limited to 'svx/source/xml')
-rw-r--r-- | svx/source/xml/xmlgrhlp.cxx | 2 | ||||
-rw-r--r-- | svx/source/xml/xmlxtexp.cxx | 2 | ||||
-rw-r--r-- | svx/source/xml/xmlxtimp.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/xml/xmlgrhlp.cxx b/svx/source/xml/xmlgrhlp.cxx index 22df739dda91..6ac0f44d5701 100644 --- a/svx/source/xml/xmlgrhlp.cxx +++ b/svx/source/xml/xmlgrhlp.cxx @@ -458,7 +458,7 @@ SvxGraphicHelperStream_Impl SvXMLGraphicHelper::ImplGetGraphicStream( const OUSt return aRet; } -OUString SvXMLGraphicHelper::ImplGetGraphicMimeType( const OUString& rFileName ) const +OUString SvXMLGraphicHelper::ImplGetGraphicMimeType( const OUString& rFileName ) { struct XMLGraphicMimeTypeMapper { diff --git a/svx/source/xml/xmlxtexp.cxx b/svx/source/xml/xmlxtexp.cxx index 0b7cf51dd5ff..e7a7962b2f60 100644 --- a/svx/source/xml/xmlxtexp.cxx +++ b/svx/source/xml/xmlxtexp.cxx @@ -521,7 +521,7 @@ SvxXMLBitmapEntryExporter::~SvxXMLBitmapEntryExporter() void SvxXMLBitmapEntryExporter::exportEntry( const OUString& rStrName, const Any& rValue ) { - maImageStyle.exportXML( rStrName, rValue, mrExport ); + XMLImageStyle::exportXML( rStrName, rValue, mrExport ); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/svx/source/xml/xmlxtimp.cxx b/svx/source/xml/xmlxtimp.cxx index 2307e6929f13..186b00c520b0 100644 --- a/svx/source/xml/xmlxtimp.cxx +++ b/svx/source/xml/xmlxtimp.cxx @@ -301,7 +301,7 @@ void SvxXMLTableImportContext::importBitmap( sal_uInt16 nPrfx, const OUString& r try { XMLImageStyle aImageStyle; - aImageStyle.importXML( xAttrList, rAny, rName, GetImport() ); + XMLImageStyle::importXML( xAttrList, rAny, rName, GetImport() ); } catch (const Exception&) { |