summaryrefslogtreecommitdiff
path: root/vcl/source/control/morebtn.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-10-14 09:36:33 +0200
committerNoel Grandin <noelgrandin@gmail.com>2014-10-15 10:13:04 +0000
commitd9fa1247be9d3a3d559adbbf9e1ed12395744738 (patch)
tree20fb4e43af4c94760b290d62ad3a6ac581665bf1 /vcl/source/control/morebtn.cxx
parentd7a0916e68238d619d74cbab72e66980e24d2f48 (diff)
fdo#84938: replace SYMBOL_TYPE constants with enum
Change-Id: Ib3763f20d74c22e28d519a9ac47f6f3ab4e31f51 Reviewed-on: https://gerrit.libreoffice.org/11983 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'vcl/source/control/morebtn.cxx')
-rw-r--r--vcl/source/control/morebtn.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/control/morebtn.cxx b/vcl/source/control/morebtn.cxx
index f84e0a891287..0b585a1587a8 100644
--- a/vcl/source/control/morebtn.cxx
+++ b/vcl/source/control/morebtn.cxx
@@ -62,12 +62,12 @@ void MoreButton::ShowState()
{
if ( mbState )
{
- SetSymbol( SYMBOL_PAGEUP );
+ SetSymbol( SymbolType::PAGEUP );
SetText( mpMBData->maLessText );
}
else
{
- SetSymbol( SYMBOL_PAGEDOWN );
+ SetSymbol( SymbolType::PAGEDOWN );
SetText( mpMBData->maMoreText );
}
}