summaryrefslogtreecommitdiff
path: root/xmlsecurity/source/framework
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-04-11 08:34:05 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-04-11 08:41:09 +0200
commitfb1b0c1f7bb4f61ce7ed04480c495cacaec63a15 (patch)
tree670ddc38ef5a1e5ab878dd30c086208506b6964e /xmlsecurity/source/framework
parentf699e7b9b22961cc401868e22eeb90c215a8832f (diff)
Use valid UNOIDL identifiers in XCompressedDocumentHandler
...which is new in LO 4.3 and still unpublished. Change-Id: I2d6b553c27906d7855c62f33fdf0060b58d3ec62
Diffstat (limited to 'xmlsecurity/source/framework')
-rw-r--r--xmlsecurity/source/framework/saxeventkeeperimpl.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/xmlsecurity/source/framework/saxeventkeeperimpl.cxx b/xmlsecurity/source/framework/saxeventkeeperimpl.cxx
index 1c7b5ca5a9b9..7617589b5565 100644
--- a/xmlsecurity/source/framework/saxeventkeeperimpl.cxx
+++ b/xmlsecurity/source/framework/saxeventkeeperimpl.cxx
@@ -1218,7 +1218,7 @@ void SAL_CALL SAXEventKeeperImpl::startElement(
aAttributes[i].sValue =xAttribs->getValueByIndex((short)i);
}
- m_xCompressedDocumentHandler->_startElement(aName, aAttributes);
+ m_xCompressedDocumentHandler->compressedStartElement(aName, aAttributes);
#endif
}
@@ -1255,7 +1255,7 @@ void SAL_CALL SAXEventKeeperImpl::endElement( const OUString& aName )
#ifndef _USECOMPRESSEDDOCUMENTHANDLER
m_xDocumentHandler->endElement(aName);
#else
- m_xCompressedDocumentHandler->_endElement(aName);
+ m_xCompressedDocumentHandler->compressedEndElement(aName);
#endif
}
@@ -1303,7 +1303,7 @@ void SAL_CALL SAXEventKeeperImpl::characters( const OUString& aChars )
#ifndef _USECOMPRESSEDDOCUMENTHANDLER
m_xDocumentHandler->characters(aChars);
#else
- m_xCompressedDocumentHandler->_characters(aChars);
+ m_xCompressedDocumentHandler->compressedCharacters(aChars);
#endif
}
}
@@ -1332,7 +1332,7 @@ void SAL_CALL SAXEventKeeperImpl::processingInstruction(
#ifndef _USECOMPRESSEDDOCUMENTHANDLER
m_xDocumentHandler->processingInstruction(aTarget, aData);
#else
- m_xCompressedDocumentHandler->_processingInstruction(aTarget, aData);
+ m_xCompressedDocumentHandler->compressedProcessingInstruction(aTarget, aData);
#endif
}
}