diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-21 09:27:31 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-21 11:39:01 +0200 |
commit | 7ed178077cc1348d72ae936a2762085e278d79d0 (patch) | |
tree | 647c72fc783a77f2347ee06a63e22eee79fef99c /include/sfx2/dinfdlg.hxx | |
parent | bc7a68d06c0fd92b8eda473600438fd6dc2164c6 (diff) |
loplugin:constparams in sfx2
Change-Id: Id982c8fb5654433e9db10e2da6a86a6c8d90b9b4
Reviewed-on: https://gerrit.libreoffice.org/40261
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/sfx2/dinfdlg.hxx')
-rw-r--r-- | include/sfx2/dinfdlg.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/sfx2/dinfdlg.hxx b/include/sfx2/dinfdlg.hxx index 216fa6fc9aee..1de0c95b680f 100644 --- a/include/sfx2/dinfdlg.hxx +++ b/include/sfx2/dinfdlg.hxx @@ -437,7 +437,7 @@ public: bool InitControls( HeaderBar* pHeaderBar, const ScrollBar* pScrollBar ); sal_uInt16 GetVisibleLineCount() const; sal_Int32 GetLineHeight() const { return m_nLineHeight; } - void AddLine( const OUString& sName, css::uno::Any& rAny ); + void AddLine( const OUString& sName, css::uno::Any const & rAny ); bool AreAllLinesValid() const; void ClearAllLines(); void DoScroll( sal_Int32 nNewPos ); @@ -470,7 +470,7 @@ public: virtual ~CustomPropertiesControl() override; virtual void dispose() override; - void AddLine( const OUString& sName, css::uno::Any& rAny, bool bInteractive ); + void AddLine( const OUString& sName, css::uno::Any const & rAny, bool bInteractive ); bool AreAllLinesValid() const { return m_pPropertiesWin->AreAllLinesValid(); } void ClearAllLines() { m_pPropertiesWin->ClearAllLines(); } @@ -569,7 +569,7 @@ public: const bool bRequired, const bool bMultiValued, const bool bOpenChoice, css::uno::Any& aChoices, - css::uno::Any& rAny ); + css::uno::Any const & rAny ); void ClearAllLines(); void DoScroll( sal_Int32 nNewPos ); @@ -598,7 +598,7 @@ public: const bool bRequired, const bool bMultiValude, const bool bOpenChoice, css::uno::Any& aChoices, - css::uno::Any& rAny ); + css::uno::Any const & rAny ); void ClearAllLines(); css::uno::Sequence< css::document::CmisProperty > |