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 /reportdesign/inc | |
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 'reportdesign/inc')
-rw-r--r-- | reportdesign/inc/PropertyForward.hxx | 4 | ||||
-rw-r--r-- | reportdesign/inc/RptObject.hxx | 4 | ||||
-rw-r--r-- | reportdesign/inc/UndoActions.hxx | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/reportdesign/inc/PropertyForward.hxx b/reportdesign/inc/PropertyForward.hxx index 9e5ed089d0df..c86858d87720 100644 --- a/reportdesign/inc/PropertyForward.hxx +++ b/reportdesign/inc/PropertyForward.hxx @@ -48,8 +48,8 @@ namespace rptui css::uno::Reference< css::beans::XPropertySet> m_xDest; css::uno::Reference< css::beans::XPropertySetInfo> m_xDestInfo; bool m_bInChange; - OPropertyMediator(OPropertyMediator&) = delete; - void operator =(OPropertyMediator&) = delete; + OPropertyMediator(OPropertyMediator const &) = delete; + void operator =(OPropertyMediator const &) = delete; protected: virtual ~OPropertyMediator() override; diff --git a/reportdesign/inc/RptObject.hxx b/reportdesign/inc/RptObject.hxx index f663a59787f7..f300b58a2dfb 100644 --- a/reportdesign/inc/RptObject.hxx +++ b/reportdesign/inc/RptObject.hxx @@ -48,8 +48,8 @@ typedef ::std::multimap< sal_Int16, OUString > IndexToNameMap; private: DlgEdHintKind const eHintKind; - DlgEdHint(DlgEdHint&) = delete; - void operator =(DlgEdHint&) = delete; + DlgEdHint(DlgEdHint const &) = delete; + void operator =(DlgEdHint const &) = delete; public: DlgEdHint( DlgEdHintKind eHint ); virtual ~DlgEdHint() override; diff --git a/reportdesign/inc/UndoActions.hxx b/reportdesign/inc/UndoActions.hxx index 0219c9e39e45..883d409f9e93 100644 --- a/reportdesign/inc/UndoActions.hxx +++ b/reportdesign/inc/UndoActions.hxx @@ -161,8 +161,8 @@ namespace rptui class REPORTDESIGN_DLLPUBLIC OUndoContainerAction: public OCommentUndoAction { - OUndoContainerAction(OUndoContainerAction&) = delete; - void operator =(OUndoContainerAction&) = delete; + OUndoContainerAction(OUndoContainerAction const &) = delete; + void operator =(OUndoContainerAction const &) = delete; protected: css::uno::Reference< css::uno::XInterface > m_xElement; // object not owned by the action |