diff options
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() |