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 --- include/xmloff/prstylei.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/xmloff/prstylei.hxx') diff --git a/include/xmloff/prstylei.hxx b/include/xmloff/prstylei.hxx index 32163f5385dd..8b506b6dc4ad 100644 --- a/include/xmloff/prstylei.hxx +++ b/include/xmloff/prstylei.hxx @@ -44,8 +44,8 @@ private: css::uno::Reference < css::style::XStyle > mxStyle; SvXMLImportContextRef const mxStyles; - XMLPropStyleContext(XMLPropStyleContext &) = delete; - void operator =(XMLPropStyleContext &) = delete; + XMLPropStyleContext(XMLPropStyleContext const &) = delete; + XMLPropStyleContext& operator =(XMLPropStyleContext const &) = delete; protected: -- cgit