From fb1b0c1f7bb4f61ce7ed04480c495cacaec63a15 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 11 Apr 2014 08:34:05 +0200 Subject: Use valid UNOIDL identifiers in XCompressedDocumentHandler ...which is new in LO 4.3 and still unpublished. Change-Id: I2d6b553c27906d7855c62f33fdf0060b58d3ec62 --- xmlsecurity/source/framework/saxeventkeeperimpl.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'xmlsecurity/source/framework') 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 } } -- cgit