diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-01 09:48:16 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-02 07:03:08 +0100 |
commit | 8467d764187691f53e66d3568270197b162332d8 (patch) | |
tree | 4516bb3ea935427d4549ce09615a22bf5663096a /uui | |
parent | 9ec1f722caedbeb04f96258f23442f8ee92a42be (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 'uui')
-rw-r--r-- | uui/source/iahndl.hxx | 4 | ||||
-rw-r--r-- | uui/source/requeststringresolver.hxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/uui/source/iahndl.hxx b/uui/source/iahndl.hxx index 9bb7fda8909b..9614e4aa908c 100644 --- a/uui/source/iahndl.hxx +++ b/uui/source/iahndl.hxx @@ -78,8 +78,8 @@ private: css::uno::Reference< css::awt::XWindow > m_xWindowParam; const OUString m_aContextParam; StringHashMap m_aTypedCustomHandlers; - UUIInteractionHelper(UUIInteractionHelper &) = delete; - void operator =(const UUIInteractionHelper&) = delete; + UUIInteractionHelper(UUIInteractionHelper const &) = delete; + UUIInteractionHelper& operator =(UUIInteractionHelper const &) = delete; public: UUIInteractionHelper( diff --git a/uui/source/requeststringresolver.hxx b/uui/source/requeststringresolver.hxx index 7a9bf0237623..27a94e6ba299 100644 --- a/uui/source/requeststringresolver.hxx +++ b/uui/source/requeststringresolver.hxx @@ -40,8 +40,8 @@ public: private: std::unique_ptr<UUIInteractionHelper> m_pImpl; - UUIInteractionRequestStringResolver(UUIInteractionRequestStringResolver &) = delete; - void operator =(UUIInteractionRequestStringResolver&) = delete; + UUIInteractionRequestStringResolver(UUIInteractionRequestStringResolver const &) = delete; + void operator =(UUIInteractionRequestStringResolver const &) = delete; virtual ~UUIInteractionRequestStringResolver() override; |