diff options
Diffstat (limited to 'xmloff/source/draw/sdxmlexp.cxx')
-rw-r--r-- | xmloff/source/draw/sdxmlexp.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/xmloff/source/draw/sdxmlexp.cxx b/xmloff/source/draw/sdxmlexp.cxx index b67829c58eac..db5dafb4c3ae 100644 --- a/xmloff/source/draw/sdxmlexp.cxx +++ b/xmloff/source/draw/sdxmlexp.cxx @@ -2264,12 +2264,11 @@ void SdXMLExport::ExportMasterStyles_() if(xMasterPage.is()) { // prepare masterpage attributes - OUString sMasterPageName; Reference < container::XNamed > xNamed(xMasterPage, UNO_QUERY); if(xNamed.is()) { bool bEncoded = false; - sMasterPageName = xNamed->getName(); + OUString sMasterPageName = xNamed->getName(); AddAttribute(XML_NAMESPACE_STYLE, XML_NAME, EncodeStyleName( sMasterPageName, &bEncoded )); if( bEncoded ) |