summaryrefslogtreecommitdiffstats
path: root/include/xmloff
diff options
context:
space:
mode:
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: