diff options
author | Noel Grandin <noel@peralex.com> | 2016-09-09 08:37:09 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-09-09 08:49:59 +0000 |
commit | c3c3e5b0554ca3f49649c96cf0b0b1b770713532 (patch) | |
tree | ca72b4772363484cc3664c26b70698fc396c8e8b /include/svtools/ivctrl.hxx | |
parent | d4b0ab2214425545aac5d98c49dc320ee39d6dc2 (diff) |
loplugin:constantparam in svtools
Change-Id: I04caae0c9ae621c55e16d3bdc014a4729617feb3
Reviewed-on: https://gerrit.libreoffice.org/28757
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/svtools/ivctrl.hxx')
-rw-r--r-- | include/svtools/ivctrl.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svtools/ivctrl.hxx b/include/svtools/ivctrl.hxx index 91dc5af86312..d3a02da88687 100644 --- a/include/svtools/ivctrl.hxx +++ b/include/svtools/ivctrl.hxx @@ -146,8 +146,8 @@ class SvxIconChoiceCtrlColumnInfo sal_uInt16 nSubItem; public: - SvxIconChoiceCtrlColumnInfo( long nWd ) : - nWidth( nWd ), nSubItem( 0 ) {} + SvxIconChoiceCtrlColumnInfo() : + nWidth( 100 ), nSubItem( 0 ) {} SvxIconChoiceCtrlColumnInfo( const SvxIconChoiceCtrlColumnInfo& ); void SetWidth( long nWd ) { nWidth = nWd; } |