From 12569802394fb0a9850fcdb0647a0845a803f1ff Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 2 Sep 2016 10:53:14 +0200 Subject: convert GradientStyle to scoped enum Change-Id: Ib740da708612df7a5f4b8c82262b9b1bd436604d --- sfx2/source/sidebar/Theme.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sfx2') diff --git a/sfx2/source/sidebar/Theme.cxx b/sfx2/source/sidebar/Theme.cxx index 0d760796dc3c..68586272f408 100644 --- a/sfx2/source/sidebar/Theme.cxx +++ b/sfx2/source/sidebar/Theme.cxx @@ -205,7 +205,7 @@ void Theme::UpdateTheme() setPropertyValue( maPropertyIdToNameMap[Paint_PanelTitleBarBackground], Any(Tools::VclToAwtGradient(Gradient( - GradientStyle_LINEAR, + GradientStyle::Linear, aSecondColor.GetRGBColor(), aBaseBackgroundColor.GetRGBColor() )))); @@ -337,7 +337,7 @@ void Theme::UpdateTheme() setPropertyValue( maPropertyIdToNameMap[Paint_ToolBoxBackground], Any(Tools::VclToAwtGradient(Gradient( - GradientStyle_LINEAR, + GradientStyle::Linear, aBaseBackgroundColor.GetRGBColor(), aGradientStop2.GetRGBColor() )))); -- cgit