diff options
author | Noel Grandin <noel@peralex.com> | 2015-05-08 15:21:46 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-05-12 06:14:46 +0000 |
commit | 4c665178f49952138835fd318edef8978ac806e3 (patch) | |
tree | e9abf7d5c8beb4e4b2333daa44bbae8d4a9f4563 /sc | |
parent | 3fd5f8919ec2256c70ff26c14cb9f8065c5cb2f1 (diff) |
convert SYMBOL_DRAW constants to scoped enum
Change-Id: I1a2200782941b1c7b826fd9fb03193e009cce697
Reviewed-on: https://gerrit.libreoffice.org/15676
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/cctrl/checklistmenu.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/cctrl/checklistmenu.cxx b/sc/source/ui/cctrl/checklistmenu.cxx index bbd90b12d311..6944b3bfb3be 100644 --- a/sc/source/ui/cctrl/checklistmenu.cxx +++ b/sc/source/ui/cctrl/checklistmenu.cxx @@ -372,7 +372,7 @@ void ScMenuFloatingWindow::drawMenuItem(size_t nPos) aMarkerPos.X() += aSize.Width() - nFontHeight + nFontHeight/4; Size aMarkerSize(nFontHeight/2, nFontHeight/2); aDecoView.DrawSymbol(Rectangle(aMarkerPos, aMarkerSize), - SymbolType::SPIN_RIGHT, GetTextColor(), 0); + SymbolType::SPIN_RIGHT, GetTextColor()); } } |