From 204d147b8a887d17e6457f795e8b8f4d632213ae Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 26 May 2015 08:29:52 +0200 Subject: convert SCROLL constants to scoped enum Change-Id: I5696fa39b2d032735cea7abe039349d4f83cf68d --- extensions/source/propctrlr/browserlistbox.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'extensions') diff --git a/extensions/source/propctrlr/browserlistbox.cxx b/extensions/source/propctrlr/browserlistbox.cxx index 063c32d15ac4..2bd9564d2098 100644 --- a/extensions/source/propctrlr/browserlistbox.cxx +++ b/extensions/source/propctrlr/browserlistbox.cxx @@ -819,7 +819,7 @@ namespace pcr sal_Int32 nLines = CalcVisibleLines(); sal_uInt16 nEnd = (sal_uInt16)(nThumbPos + nLines); - m_aLinesPlayground->Scroll(0, -nDelta * m_nRowHeight, SCROLL_CHILDREN); + m_aLinesPlayground->Scroll(0, -nDelta * m_nRowHeight, ScrollFlags::Children); if (1 == nDelta) { @@ -856,7 +856,7 @@ namespace pcr sal_uInt16 nEnd = (sal_uInt16)(nThumbPos + CalcVisibleLines()); - m_aLinesPlayground->Scroll(0, -nDelta * m_nRowHeight, SCROLL_CHILDREN); + m_aLinesPlayground->Scroll(0, -nDelta * m_nRowHeight, ScrollFlags::Children); if (1 == nDelta) { -- cgit