summaryrefslogtreecommitdiff
path: root/uui/source
diff options
context:
space:
mode:
Diffstat (limited to 'uui/source')
-rw-r--r--uui/source/iahndl.hxx4
-rw-r--r--uui/source/requeststringresolver.hxx4
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;