diff options
author | Noel Grandin <noel@peralex.com> | 2015-05-26 08:29:52 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-05-26 08:30:19 +0200 |
commit | 204d147b8a887d17e6457f795e8b8f4d632213ae (patch) | |
tree | 97d0bfc08eff025958add5731e96fbe44d84976e /basctl | |
parent | 79aa1ab00a8361c44b8caf73294f841e6553eb72 (diff) |
convert SCROLL constants to scoped enum
Change-Id: I5696fa39b2d032735cea7abe039349d4f83cf68d
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/dlged/dlged.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basctl/source/dlged/dlged.cxx b/basctl/source/dlged/dlged.cxx index f9cb691efc2a..e56a876e7885 100644 --- a/basctl/source/dlged/dlged.cxx +++ b/basctl/source/dlged/dlged.cxx @@ -323,7 +323,7 @@ void DlgEditor::DoScroll( ScrollBar* ) // rWindow.SetBackground(); // #i74769# children should be scrolled - rWindow.Scroll( -nX, -nY, SCROLL_CHILDREN); + rWindow.Scroll( -nX, -nY, ScrollFlags::Children); aMap.SetOrigin( Point( -aScrollPos.Width(), -aScrollPos.Height() ) ); rWindow.SetMapMode( aMap ); rWindow.Update(); |