From f3331f7694e74f349375c223ce7ed84838e92d89 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 27 May 2015 16:09:43 +0200 Subject: convert PARENTCLIPMODE constants to scoped enum Change-Id: I36a53112e75fca9208b2f91e224a7c671695509b --- cui/source/dialogs/iconcdlg.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cui') diff --git a/cui/source/dialogs/iconcdlg.cxx b/cui/source/dialogs/iconcdlg.cxx index 0b77226a9512..686734d6e8a2 100644 --- a/cui/source/dialogs/iconcdlg.cxx +++ b/cui/source/dialogs/iconcdlg.cxx @@ -98,14 +98,14 @@ void IconChoicePage::ImplInitSettings() if ( pParent->IsChildTransparentModeEnabled() && !IsControlBackground() ) { EnableChildTransparentMode( true ); - SetParentClipMode( PARENTCLIPMODE_NOCLIP ); + SetParentClipMode( ParentClipMode::NoClip ); SetPaintTransparent( true ); SetBackground(); } else { EnableChildTransparentMode( false ); - SetParentClipMode( 0 ); + SetParentClipMode( ParentClipMode::NONE ); SetPaintTransparent( false ); if ( IsControlBackground() ) -- cgit