From 8257ce4cd7d721255c48c0224c38d85e91b91d5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= Date: Thu, 3 Feb 2011 14:43:24 +0000 Subject: [PATCH] mark unimplemented copy ctor and assignment as private, and fix sigs --- xmloff/source/chart/SchXMLExport.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xmloff/source/chart/SchXMLExport.cxx b/xmloff/source/chart/SchXMLExport.cxx index 2f660ffb05f7..d73fe1036ac5 100644 --- a/xmloff/source/chart/SchXMLExport.cxx +++ b/xmloff/source/chart/SchXMLExport.cxx @@ -243,8 +243,9 @@ public: void exportText( const ::rtl::OUString& rText, bool bConvertTabsLFs = false ); void exportErrorBarRanges(); +private: SchXMLExportHelper_Impl(SchXMLExportHelper_Impl &); // not defined - void operator =(SchXMLExportHelper_Impl &); // not defined + SchXMLExportHelper_Impl operator =(SchXMLExportHelper_Impl &); // not defined public: SvXMLExport& mrExport;