summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-05-11 16:57:46 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-13 07:52:24 +0000
commitb3d5da663ff09c72455a8d3bf9be7c00220271bb (patch)
tree53751d1a733a7de389f3cf71b5b7a08bda7c9b0c /starmath
parent3581dde3246b2bcdeee079879090d2317adc8f63 (diff)
convert SHOWTRACK to scoped enum
Change-Id: Ibf06f6c79f80d7265ae3239c1ea0088118e92e21 Reviewed-on: https://gerrit.libreoffice.org/24894 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/view.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/source/view.cxx b/starmath/source/view.cxx
index e9a6fc57860b..1b7fe46e6de5 100644
--- a/starmath/source/view.cxx
+++ b/starmath/source/view.cxx
@@ -304,7 +304,7 @@ void SmGraphicWindow::ShowCursor(bool bShow)
bool bInvert = bShow != IsCursorVisible();
if (bInvert)
- InvertTracking(aCursorRect, SHOWTRACK_SMALL | SHOWTRACK_WINDOW);
+ InvertTracking(aCursorRect, ShowTrackFlags::Small | ShowTrackFlags::TrackWindow);
SetIsCursorVisible(bShow);
}