From 8467d764187691f53e66d3568270197b162332d8 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 1 Nov 2018 09:48:16 +0200 Subject: fix signatures of deleted copy/assign operators Change-Id: Id1a0749b78a7021be3564487fb974d7084705129 Reviewed-on: https://gerrit.libreoffice.org/62718 Tested-by: Jenkins Reviewed-by: Noel Grandin --- writerfilter/source/ooxml/OOXMLFastContextHandler.hxx | 2 +- writerfilter/source/ooxml/OOXMLFastDocumentHandler.hxx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'writerfilter') diff --git a/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx b/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx index 891b7644fada..1720ca404ce3 100644 --- a/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx +++ b/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx @@ -233,7 +233,7 @@ protected: OOXMLValue::Pointer_t mpGridAfter; private: - void operator =(OOXMLFastContextHandler &) = delete; + void operator =(OOXMLFastContextHandler const &) = delete; /// Handles AlternateContent. Returns true, if children of the current element should be ignored. bool prepareMceContext(Token_t nElement, const css::uno::Reference& Attribs); diff --git a/writerfilter/source/ooxml/OOXMLFastDocumentHandler.hxx b/writerfilter/source/ooxml/OOXMLFastDocumentHandler.hxx index 0757cb90ea19..066781095749 100644 --- a/writerfilter/source/ooxml/OOXMLFastDocumentHandler.hxx +++ b/writerfilter/source/ooxml/OOXMLFastDocumentHandler.hxx @@ -77,8 +77,8 @@ public: void setIsSubstream( bool bSubstream ); private: - OOXMLFastDocumentHandler(OOXMLFastDocumentHandler &) = delete; - void operator =(OOXMLFastDocumentHandler &) = delete; + OOXMLFastDocumentHandler(OOXMLFastDocumentHandler const &) = delete; + void operator =(OOXMLFastDocumentHandler const &) = delete; css::uno::Reference< css::uno::XComponentContext > m_xContext; -- cgit