summaryrefslogtreecommitdiff
path: root/offapi
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 /offapi
parentf699e7b9b22961cc401868e22eeb90c215a8832f (diff)
Use valid UNOIDL identifiers in XCompressedDocumentHandler
...which is new in LO 4.3 and still unpublished. Change-Id: I2d6b553c27906d7855c62f33fdf0060b58d3ec62
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/xml/csax/XCompressedDocumentHandler.idl16
1 files changed, 8 insertions, 8 deletions
diff --git a/offapi/com/sun/star/xml/csax/XCompressedDocumentHandler.idl b/offapi/com/sun/star/xml/csax/XCompressedDocumentHandler.idl
index d397f27a4db4..cb17a626996a 100644
--- a/offapi/com/sun/star/xml/csax/XCompressedDocumentHandler.idl
+++ b/offapi/com/sun/star/xml/csax/XCompressedDocumentHandler.idl
@@ -42,28 +42,28 @@ module com { module sun { module star { module xml { module csax {
*/
interface XCompressedDocumentHandler: com::sun::star::uno::XInterface
{
- void _startDocument()
+ void compressedStartDocument()
raises( com::sun::star::xml::sax::SAXException );
- void _endDocument()
+ void compressedEndDocument()
raises( com::sun::star::xml::sax::SAXException );
- void _startElement( [in] string aName, [in] sequence< XMLAttribute > aAttributes)
+ void compressedStartElement( [in] string aName, [in] sequence< XMLAttribute > aAttributes)
raises( com::sun::star::xml::sax::SAXException );
- void _endElement( [in] string aName )
+ void compressedEndElement( [in] string aName )
raises( com::sun::star::xml::sax::SAXException );
- void _characters( [in] string aChars )
+ void compressedCharacters( [in] string aChars )
raises( com::sun::star::xml::sax::SAXException );
- void _ignorableWhitespace( [in] string aWhitespaces )
+ void compressedIgnorableWhitespace( [in] string aWhitespaces )
raises( com::sun::star::xml::sax::SAXException );
- void _processingInstruction( [in] string aTarget, [in] string aData )
+ void compressedProcessingInstruction( [in] string aTarget, [in] string aData )
raises( com::sun::star::xml::sax::SAXException );
- void _setDocumentLocator( [in] long columnNumber, [in] long lineNumber, [in] string publicId, [in] string systemId)
+ void compressedSetDocumentLocator( [in] long columnNumber, [in] long lineNumber, [in] string publicId, [in] string systemId)
raises( com::sun::star::xml::sax::SAXException );
};