diff options
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/appl/imestatuswindow.hxx | 2 | ||||
-rw-r--r-- | sfx2/source/doc/sfxbasemodel.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
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: |