summaryrefslogtreecommitdiff
path: root/writerfilter/source/ooxml/OOXMLFastDocumentHandler.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'writerfilter/source/ooxml/OOXMLFastDocumentHandler.hxx')
-rw-r--r--writerfilter/source/ooxml/OOXMLFastDocumentHandler.hxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/writerfilter/source/ooxml/OOXMLFastDocumentHandler.hxx b/writerfilter/source/ooxml/OOXMLFastDocumentHandler.hxx
index 6514ef0de282..c104db71df63 100644
--- a/writerfilter/source/ooxml/OOXMLFastDocumentHandler.hxx
+++ b/writerfilter/source/ooxml/OOXMLFastDocumentHandler.hxx
@@ -25,6 +25,7 @@
#include <com/sun/star/xml/sax/XFastDocumentHandler.hpp>
#include <dmapper/resourcemodel.hxx>
#include <ooxml/OOXMLDocument.hxx>
+#include <rtl/ref.hxx>
#include "OOXMLParserState.hxx"
namespace writerfilter {
@@ -41,7 +42,7 @@ public:
Stream* pStream,
OOXMLDocumentImpl* pDocument,
sal_Int32 nXNoteId );
- virtual ~OOXMLFastDocumentHandler() {}
+ virtual ~OOXMLFastDocumentHandler();
// css::xml::sax::XFastDocumentHandler:
virtual void SAL_CALL startDocument()
@@ -93,8 +94,8 @@ private:
Stream * mpStream;
OOXMLDocumentImpl* mpDocument;
sal_Int32 mnXNoteId;
- mutable css::uno::Reference<OOXMLFastContextHandler> mxContextHandler;
- css::uno::Reference<OOXMLFastContextHandler> getContextHandler() const;
+ mutable rtl::Reference<OOXMLFastContextHandler> mxContextHandler;
+ rtl::Reference<OOXMLFastContextHandler> getContextHandler() const;
};
}}