diff options
Diffstat (limited to 'xmloff/source/text/XMLFootnoteImportContext.cxx')
-rw-r--r-- | xmloff/source/text/XMLFootnoteImportContext.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/xmloff/source/text/XMLFootnoteImportContext.cxx b/xmloff/source/text/XMLFootnoteImportContext.cxx index 49e4dca7a6e6..78721b62f3b4 100644 --- a/xmloff/source/text/XMLFootnoteImportContext.cxx +++ b/xmloff/source/text/XMLFootnoteImportContext.cxx @@ -65,7 +65,6 @@ XMLFootnoteImportContext::XMLFootnoteImportContext( sal_uInt16 nPrfx, const OUString& rLocalName ) : SvXMLImportContext(rImport, nPrfx, rLocalName) -, sPropertyReferenceId("ReferenceId") , mbListContextPushed(false) , rHelper(rHlp) { @@ -120,7 +119,7 @@ void XMLFootnoteImportContext::StartElement( { // get ID ... Reference<XPropertySet> xPropertySet(xTextContent, UNO_QUERY); - Any aAny =xPropertySet->getPropertyValue(sPropertyReferenceId); + Any aAny =xPropertySet->getPropertyValue("ReferenceId"); sal_Int16 nID = 0; aAny >>= nID; |