diff options
author | Noel Grandin <noel@peralex.com> | 2016-05-11 16:57:46 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-05-13 07:52:24 +0000 |
commit | b3d5da663ff09c72455a8d3bf9be7c00220271bb (patch) | |
tree | 53751d1a733a7de389f3cf71b5b7a08bda7c9b0c /starmath/source/view.cxx | |
parent | 3581dde3246b2bcdeee079879090d2317adc8f63 (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/source/view.cxx')
-rw-r--r-- | starmath/source/view.cxx | 2 |
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); } |