From 68a60bc98a6ad2467a17a917881745cf9310e90f Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Thu, 11 Oct 2012 03:48:50 +0200 Subject: dat bars should use automatic as default Change-Id: I67fe25cb62d701d7267932923e94f10e44853ac4 --- sc/source/ui/condformat/condformatdlgentry.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sc/source') diff --git a/sc/source/ui/condformat/condformatdlgentry.cxx b/sc/source/ui/condformat/condformatdlgentry.cxx index 865cfcc0d557..fa47cc06691b 100644 --- a/sc/source/ui/condformat/condformatdlgentry.cxx +++ b/sc/source/ui/condformat/condformatdlgentry.cxx @@ -980,8 +980,8 @@ void ScDataBarFrmtEntry::Init() mpDataBarData.reset(new ScDataBarFormatData()); mpDataBarData->mpUpperLimit.reset(new ScColorScaleEntry()); mpDataBarData->mpLowerLimit.reset(new ScColorScaleEntry()); - mpDataBarData->mpLowerLimit->SetType(COLORSCALE_MIN); - mpDataBarData->mpUpperLimit->SetType(COLORSCALE_MAX); + mpDataBarData->mpLowerLimit->SetType(COLORSCALE_AUTO); + mpDataBarData->mpUpperLimit->SetType(COLORSCALE_AUTO); mpDataBarData->maPositiveColor = COL_LIGHTBLUE; } -- cgit