diff options
author | Noel Grandin <noel@peralex.com> | 2014-11-04 21:10:34 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2014-11-05 06:45:07 +0000 |
commit | 3c58f0768049718fae3d47d5ebfa6c7485ad52b1 (patch) | |
tree | 33235262521b5721e09a299a8fe47e444adb477c /forms/source | |
parent | 705c48d32eec0aa5180e60ca157daca4b154e4a3 (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 'forms/source')
-rw-r--r-- | forms/source/solar/control/navtoolbar.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/forms/source/solar/control/navtoolbar.cxx b/forms/source/solar/control/navtoolbar.cxx index 7e78b7fb997b..587192b48920 100644 --- a/forms/source/solar/control/navtoolbar.cxx +++ b/forms/source/solar/control/navtoolbar.cxx @@ -357,7 +357,7 @@ namespace frm for ( sal_uInt16 i=0; i<nItemCount; ++i ) { sal_uInt16 nId = m_pToolbar->GetItemId( i ); - if ( ( TOOLBOXITEM_BUTTON == m_pToolbar->GetItemType( i ) ) && !isArtificialItem( nId ) ) + if ( ( ToolBoxItemType::BUTTON == m_pToolbar->GetItemType( i ) ) && !isArtificialItem( nId ) ) aFormFeatures.push_back( nId ); } |