summaryrefslogtreecommitdiff
path: root/sfx2
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 /sfx2
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 'sfx2')
-rw-r--r--sfx2/inc/bitset.hxx4
-rw-r--r--sfx2/source/appl/imestatuswindow.hxx2
-rw-r--r--sfx2/source/doc/sfxbasemodel.cxx2
3 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/inc/bitset.hxx b/sfx2/inc/bitset.hxx
index fc29dbd67ecb..e9c39b84b4ae 100644
--- a/sfx2/inc/bitset.hxx
+++ b/sfx2/inc/bitset.hxx
@@ -31,8 +31,8 @@ private:
IndexBitSet& operator-=( sal_uInt16 nBit );
bool Contains( sal_uInt16 nBit ) const;
- IndexBitSet(IndexBitSet &) = delete;
- void operator =(IndexBitSet) = delete;
+ IndexBitSet(IndexBitSet const &) = delete;
+ void operator =(IndexBitSet const &) = delete;
public:
IndexBitSet();
diff --git a/sfx2/source/appl/imestatuswindow.hxx b/sfx2/source/appl/imestatuswindow.hxx
index f9df1c623950..79bf806328b6 100644
--- a/sfx2/source/appl/imestatuswindow.hxx
+++ b/sfx2/source/appl/imestatuswindow.hxx
@@ -87,7 +87,7 @@ public:
using ImeStatusWindow_Impl::operator delete;
private:
- ImeStatusWindow(ImeStatusWindow &) = delete;
+ ImeStatusWindow(ImeStatusWindow const &) = delete;
void operator =(const ImeStatusWindow&) = delete;
virtual ~ImeStatusWindow() override;
diff --git a/sfx2/source/doc/sfxbasemodel.cxx b/sfx2/source/doc/sfxbasemodel.cxx
index f94a6cf18d3f..f47ce3020efd 100644
--- a/sfx2/source/doc/sfxbasemodel.cxx
+++ b/sfx2/source/doc/sfxbasemodel.cxx
@@ -435,7 +435,7 @@ class SfxSaveGuard
IMPL_SfxBaseModel_DataContainer* m_pData;
std::unique_ptr<SfxOwnFramesLocker> m_pFramesLock;
- SfxSaveGuard(SfxSaveGuard &) = delete;
+ SfxSaveGuard(SfxSaveGuard const &) = delete;
void operator =(const SfxSaveGuard&) = delete;
public: