summaryrefslogtreecommitdiff
path: root/registry
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 /registry
parent9ec1f722caedbeb04f96258f23442f8ee92a42be (diff)
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 'registry')
-rw-r--r--registry/source/reflread.hxx4
-rw-r--r--registry/source/reflwrit.hxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/registry/source/reflread.hxx b/registry/source/reflread.hxx
index 35198e31ec22..880b6bcaddc0 100644
--- a/registry/source/reflread.hxx
+++ b/registry/source/reflread.hxx
@@ -103,8 +103,8 @@ public:
OUString getFieldFileName( sal_uInt16 index ) const;
private:
- RegistryTypeReader(RegistryTypeReader &) = delete;
- void operator =(RegistryTypeReader) = delete;
+ RegistryTypeReader(RegistryTypeReader const &) = delete;
+ void operator =(RegistryTypeReader const &) = delete;
/// stores the handle of an implementation class
TypeReaderImpl m_hImpl;
diff --git a/registry/source/reflwrit.hxx b/registry/source/reflwrit.hxx
index faecc5c57650..39a703259f64 100644
--- a/registry/source/reflwrit.hxx
+++ b/registry/source/reflwrit.hxx
@@ -90,8 +90,8 @@ public:
sal_uInt32 getBlopSize();
private:
- RegistryTypeWriter(RegistryTypeWriter &) = delete;
- void operator =(RegistryTypeWriter) = delete;
+ RegistryTypeWriter(RegistryTypeWriter const &) = delete;
+ void operator =(RegistryTypeWriter const &) = delete;
/// stores the handle of an implementation class
TypeWriterImpl m_hImpl;