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/tbxctrl.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/tbxctrl.hxx')
-rw-r--r-- | include/sfx2/tbxctrl.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sfx2/tbxctrl.hxx b/include/sfx2/tbxctrl.hxx index c23da95f24cc..39a7997ac916 100644 --- a/include/sfx2/tbxctrl.hxx +++ b/include/sfx2/tbxctrl.hxx @@ -183,13 +183,13 @@ public: unsigned short GetSlotId() const; void Dispatch( const OUString& aCommand, - css::uno::Sequence< css::beans::PropertyValue >& aArgs ); + css::uno::Sequence< css::beans::PropertyValue > const & aArgs ); static void Dispatch( const css::uno::Reference< css::frame::XDispatchProvider >& rDispatchProvider, const OUString& rCommand, - css::uno::Sequence< css::beans::PropertyValue >& aArgs ); + css::uno::Sequence< css::beans::PropertyValue > const & aArgs ); static SfxItemState GetItemState( const SfxPoolItem* pState ); - static SfxToolBoxControl* CreateControl( sal_uInt16 nSlotId, sal_uInt16 nTbxId, ToolBox *pBox, SfxModule *pMod ); + static SfxToolBoxControl* CreateControl( sal_uInt16 nSlotId, sal_uInt16 nTbxId, ToolBox *pBox, SfxModule const *pMod ); static void RegisterToolBoxControl( SfxModule*, const SfxTbxCtrlFactory&); }; |