diff options
-rw-r--r-- | sc/source/ui/condformat/condformatdlgentry.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/condformat/condformatdlgentry.cxx b/sc/source/ui/condformat/condformatdlgentry.cxx index d8cdaa173d14..55deff8753ba 100644 --- a/sc/source/ui/condformat/condformatdlgentry.cxx +++ b/sc/source/ui/condformat/condformatdlgentry.cxx @@ -999,9 +999,9 @@ void ScColorScale3FrmtEntry::Init() if(pEntry->GetColor() == Color(COL_LIGHTRED)) maLbColMin->SelectEntryPos(i); - if(pEntry->GetColor() == Color(COL_GREEN)) + if(pEntry->GetColor() == Color(COL_YELLOW)) maLbColMiddle->SelectEntryPos(i); - if(pEntry->GetColor() == Color(COL_LIGHTBLUE)) + if(pEntry->GetColor() == Color(0x00CC00)) // Green 3 maLbColMax->SelectEntryPos(i); } maLbColMin->SetUpdateMode( true ); |