summaryrefslogtreecommitdiffstats
path: root/include/xmloff
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-11-01 09:48:16 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-11-02 07:03:08 +0100
commit8467d764187691f53e66d3568270197b162332d8 (patch)
tree4516bb3ea935427d4549ce09615a22bf5663096a /include/xmloff
parent[Pardus] fix missing break in switch case on Android (diff)
downloadcore-8467d764187691f53e66d3568270197b162332d8.tar.gz
core-8467d764187691f53e66d3568270197b162332d8.zip
fix signatures of deleted copy/assign operators
Change-Id: Id1a0749b78a7021be3564487fb974d7084705129 Reviewed-on: https://gerrit.libreoffice.org/62718 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/xmloff')
-rw-r--r--include/xmloff/SchXMLExportHelper.hxx4
-rw-r--r--include/xmloff/prstylei.hxx4
-rw-r--r--include/xmloff/txtparae.hxx2
-rw-r--r--include/xmloff/xmlimppr.hxx4
-rw-r--r--include/xmloff/xmlstyle.hxx4
5 files changed, 9 insertions, 9 deletions
diff --git a/include/xmloff/SchXMLExportHelper.hxx b/include/xmloff/SchXMLExportHelper.hxx
index ac74e09f8f9f..38544067c63d 100644
--- a/include/xmloff/SchXMLExportHelper.hxx
+++ b/include/xmloff/SchXMLExportHelper.hxx
@@ -57,8 +57,8 @@ public:
void SetDestinationShellID( const OUString& rShellID );
private:
- SchXMLExportHelper(SchXMLExportHelper &) = delete;
- void operator =(SchXMLExportHelper &) = delete;
+ SchXMLExportHelper(SchXMLExportHelper const &) = delete;
+ SchXMLExportHelper& operator =(SchXMLExportHelper const &) = delete;
private:
std::unique_ptr<SchXMLExportHelper_Impl> m_pImpl;
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:
diff --git a/include/xmloff/txtparae.hxx b/include/xmloff/txtparae.hxx
index f19080d0c518..5b2099714c0d 100644
--- a/include/xmloff/txtparae.hxx
+++ b/include/xmloff/txtparae.hxx
@@ -528,7 +528,7 @@ public:
void PopTextListsHelper();
private:
- XMLTextParagraphExport(XMLTextParagraphExport &) = delete;
+ XMLTextParagraphExport(XMLTextParagraphExport const &) = delete;
};
inline const XMLTextListAutoStylePool&
diff --git a/include/xmloff/xmlimppr.hxx b/include/xmloff/xmlimppr.hxx
index ec280ead6cf2..fe4cf515ea49 100644
--- a/include/xmloff/xmlimppr.hxx
+++ b/include/xmloff/xmlimppr.hxx
@@ -57,8 +57,8 @@ class XMLOFF_DLLPUBLIC SvXMLImportPropertyMapper : public salhelper::SimpleRefer
SvXMLImport& rImport; // access to error handling
- SvXMLImportPropertyMapper(SvXMLImportPropertyMapper &) = delete;
- void operator =(SvXMLImportPropertyMapper &) = delete;
+ SvXMLImportPropertyMapper(SvXMLImportPropertyMapper const &) = delete;
+ SvXMLImportPropertyMapper& operator =(SvXMLImportPropertyMapper const &) = delete;
protected:
diff --git a/include/xmloff/xmlstyle.hxx b/include/xmloff/xmlstyle.hxx
index dfeb41e7261d..6d60a1114b73 100644
--- a/include/xmloff/xmlstyle.hxx
+++ b/include/xmloff/xmlstyle.hxx
@@ -168,8 +168,8 @@ class XMLOFF_DLLPUBLIC SvXMLStylesContext : public SvXMLImportContext
SAL_DLLPRIVATE const SvXMLTokenMap& GetStyleStylesElemTokenMap();
- SvXMLStylesContext(SvXMLStylesContext &) = delete;
- void operator =(SvXMLStylesContext &) = delete;
+ SvXMLStylesContext(SvXMLStylesContext const &) = delete;
+ SvXMLStylesContext& operator =(SvXMLStylesContext const &) = delete;
protected: