summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-11-04 21:10:34 +0200
committerNoel Grandin <noelgrandin@gmail.com>2014-11-05 06:45:07 +0000
commit3c58f0768049718fae3d47d5ebfa6c7485ad52b1 (patch)
tree33235262521b5721e09a299a8fe47e444adb477c /sfx2
parent705c48d32eec0aa5180e60ca157daca4b154e4a3 (diff)
fdo#84938: replace TOOLBOXITEM_ constants with enum
Change-Id: I08c4a456f9e80f70719ca8c3ad5c0f0d2d8282f6 Reviewed-on: https://gerrit.libreoffice.org/12258 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/toolbox/imgmgr.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/toolbox/imgmgr.cxx b/sfx2/source/toolbox/imgmgr.cxx
index 7e56fc0d88c9..4c865a122817 100644
--- a/sfx2/source/toolbox/imgmgr.cxx
+++ b/sfx2/source/toolbox/imgmgr.cxx
@@ -211,7 +211,7 @@ void SfxImageManager_Impl::SetSymbolsSize_Impl( sal_Int16 nNewSymbolsSize )
for ( sal_uInt16 nPos=0; nPos<nCount; nPos++ )
{
sal_uInt16 nId = pBox->GetItemId( nPos );
- if ( pBox->GetItemType(nPos) == TOOLBOXITEM_BUTTON )
+ if ( pBox->GetItemType(nPos) == ToolBoxItemType::BUTTON )
{
pBox->SetItemImage( nId, GetImage( nId, bLarge ) );
SfxStateCache *pCache = SfxViewFrame::Current()->GetBindings().GetStateCache( nId );