diff options
author | Noel Grandin <noel@peralex.com> | 2016-02-26 09:36:26 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-02-26 08:24:32 +0000 |
commit | 911ae0aeca443fb4b5e400ae0f939567b580e443 (patch) | |
tree | 1b7ef72f8f4c50c9ab7a552743a95b329912a0bc /include/vcl/toolbox.hxx | |
parent | 63e2aec922ec8c0a9011b98dbfd3dac295f473af (diff) |
loplugin:unuseddefaultparams in /include/vcl
Change-Id: I36daccd90bfa6ba0ee8b9e76bff2bd8494155a04
Reviewed-on: https://gerrit.libreoffice.org/22710
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/vcl/toolbox.hxx')
-rw-r--r-- | include/vcl/toolbox.hxx | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/include/vcl/toolbox.hxx b/include/vcl/toolbox.hxx index 11958cd1f7e0..18019e557326 100644 --- a/include/vcl/toolbox.hxx +++ b/include/vcl/toolbox.hxx @@ -284,8 +284,7 @@ public: virtual void Resizing( Size& rSize ) override; virtual Size GetOptimalSize() const override; - void InsertItem( const ResId& rResId, - sal_uInt16 nPos = TOOLBOX_APPEND ); + void InsertItem( const ResId& rResId ); /// Insert a command (like '.uno:Save'). virtual void InsertItem( const OUString& rCommand, const css::uno::Reference<css::frame::XFrame>& rFrame, @@ -305,11 +304,11 @@ public: void InsertWindow( sal_uInt16 nItemId, vcl::Window* pWindow, ToolBoxItemBits nBits = ToolBoxItemBits::NONE, sal_uInt16 nPos = TOOLBOX_APPEND ); - void InsertSpace( sal_uInt16 nPos = TOOLBOX_APPEND ); + void InsertSpace(); void InsertSeparator( sal_uInt16 nPos = TOOLBOX_APPEND, sal_uInt16 nPixSize = 0 ); void InsertBreak( sal_uInt16 nPos = TOOLBOX_APPEND ); void RemoveItem( sal_uInt16 nPos ); - void CopyItem( const ToolBox& rToolBox, sal_uInt16 nItemId, sal_uInt16 nNewPos = TOOLBOX_APPEND ); + void CopyItem( const ToolBox& rToolBox, sal_uInt16 nItemId ); void Clear(); const ImageList& GetImageList() const { return maImageList; } @@ -376,7 +375,7 @@ public: void StartSelection(); void EndSelection(); - void SetItemDown( sal_uInt16 nItemId, bool bDown, bool bRelease = true ); + void SetItemDown( sal_uInt16 nItemId, bool bDown ); void SetItemState( sal_uInt16 nItemId, TriState eState ); TriState GetItemState( sal_uInt16 nItemId ) const; @@ -387,7 +386,7 @@ public: void EnableItem( sal_uInt16 nItemId, bool bEnable = true ); bool IsItemEnabled( sal_uInt16 nItemId ) const; - void TriggerItem( sal_uInt16 nItemId, bool bShift = false, bool bCtrl = false ); + void TriggerItem( sal_uInt16 nItemId, bool bShift = false ); /// Shows or hides items. void ShowItem(sal_uInt16 nItemId, bool bVisible = true); |