[Libreoffice-commits] .: xmloff/source
Caolán McNamara
caolan at kemper.freedesktop.org
Thu Feb 3 06:43:30 PST 2011
xmloff/source/chart/SchXMLExport.cxx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit 73180fee6fa9d0f8f450a5702a5f704606eee6a0
Author: Caolán McNamara <caolanm at redhat.com>
Date: Thu Feb 3 14:43:24 2011 +0000
mark unimplemented copy ctor and assignment as private, and fix sigs
diff --git a/xmloff/source/chart/SchXMLExport.cxx b/xmloff/source/chart/SchXMLExport.cxx
index c837c6d..2a5d4e8 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;
More information about the Libreoffice-commits
mailing list