diff options
author | Noel Grandin <noel@peralex.com> | 2015-03-24 16:23:31 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-03-25 08:56:15 +0200 |
commit | c7c0723dd97e278edeb7686d350ffe6d8706ed66 (patch) | |
tree | e8c9c9635ddca3ecec98ab05b109922ab7fab861 /sd | |
parent | abf60c4a0fd111985891e2faa30a1e32799fdf9c (diff) |
convert EV_CNTRL constants to enum class
Change-Id: I0ffc0e222c978ce7c734228f712e88422d3a615f
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/view/Outliner.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/view/Outliner.cxx b/sd/source/ui/view/Outliner.cxx index 26d15c9c95e5..469d1f82905f 100644 --- a/sd/source/ui/view/Outliner.cxx +++ b/sd/source/ui/view/Outliner.cxx @@ -1665,8 +1665,8 @@ void Outliner::Implementation::ProvideOutlinerView ( } else mpOutlineView->SetWindow(pWindow); - sal_uLong nStat = mpOutlineView->GetControlWord(); - nStat &= ~EV_CNTRL_AUTOSCROLL; + EVControlBits nStat = mpOutlineView->GetControlWord(); + nStat &= ~EVControlBits::AUTOSCROLL; mpOutlineView->SetControlWord(nStat); if (bInsert) rOutliner.InsertView( mpOutlineView ); |