diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2016-08-26 01:26:38 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-08-26 07:51:19 +0000 |
commit | ef699b4d41cc602322d980027956aab636c776d5 (patch) | |
tree | 65856032b9b3bd285558f5fb6d6b21598a50d548 /svx/source/dialog/checklbx.cxx | |
parent | 213a11b94caf28ffae927169ebd372a866f8f9b2 (diff) |
convert SV_ITEM_ID_LBOX defines to scoped enum
and remove unused SV_ITEM_ID_EXTENDRLBOXSTRING
Change-Id: Ic84d9341d0225b01b9ef46814483c66b1af307b5
Reviewed-on: https://gerrit.libreoffice.org/28397
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svx/source/dialog/checklbx.cxx')
-rw-r--r-- | svx/source/dialog/checklbx.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/dialog/checklbx.cxx b/svx/source/dialog/checklbx.cxx index 11e4bda87eb8..e2c230272868 100644 --- a/svx/source/dialog/checklbx.cxx +++ b/svx/source/dialog/checklbx.cxx @@ -181,7 +181,7 @@ void SvxCheckListBox::MouseButtonDown( const MouseEvent& rMEvt ) bool bCheck = GetCheckButtonState( pEntry ) == SvButtonState::Checked; SvLBoxItem* pItem = GetItem( pEntry, aPnt.X() ); - if (pItem && pItem->GetType() == SV_ITEM_ID_LBOXBUTTON) + if (pItem && pItem->GetType() == SvLBoxItemType::Button) { SvTreeListBox::MouseButtonDown( rMEvt ); Select( pEntry ); |