summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-10-10 06:08:42 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-10-10 06:49:19 +0200
commit616662f48df7a13dd957918f43202ccb2d1899b3 (patch)
treedf757221379b3dfd4dc2a1731e83662a21c41ad8 /sc/source
parent2757c7450de3369872a247cf4876bb1723cc48fa (diff)
forgot to hide this list box when deactivating an entry
Change-Id: I9313a5ac542ca83be418b9c9aeca46e500c3ddaa
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/ui/condformat/condformatdlgentry.cxx11
1 files changed, 11 insertions, 0 deletions
diff --git a/sc/source/ui/condformat/condformatdlgentry.cxx b/sc/source/ui/condformat/condformatdlgentry.cxx
index 14b7bd430a6b..97706f851ad1 100644
--- a/sc/source/ui/condformat/condformatdlgentry.cxx
+++ b/sc/source/ui/condformat/condformatdlgentry.cxx
@@ -674,6 +674,8 @@ ScFormatEntry* ScColorScale2FrmtEntry::GetEntry() const
void ScColorScale2FrmtEntry::SetActive()
{
+ maLbColorFormat.Show();
+
maLbEntryTypeMin.Show();
maLbEntryTypeMax.Show();
@@ -688,6 +690,8 @@ void ScColorScale2FrmtEntry::SetActive()
void ScColorScale2FrmtEntry::SetInactive()
{
+ maLbColorFormat.Hide();
+
maLbEntryTypeMin.Hide();
maLbEntryTypeMax.Hide();
@@ -839,6 +843,7 @@ ScFormatEntry* ScColorScale3FrmtEntry::GetEntry() const
void ScColorScale3FrmtEntry::SetActive()
{
+ maLbColorFormat.Show();
maLbEntryTypeMin.Show();
maLbEntryTypeMiddle.Show();
maLbEntryTypeMax.Show();
@@ -856,6 +861,8 @@ void ScColorScale3FrmtEntry::SetActive()
void ScColorScale3FrmtEntry::SetInactive()
{
+ maLbColorFormat.Hide();
+
maLbEntryTypeMin.Hide();
maLbEntryTypeMiddle.Hide();
maLbEntryTypeMax.Hide();
@@ -1002,6 +1009,8 @@ ScFormatEntry* ScDataBarFrmtEntry::createDatabarEntry() const
void ScDataBarFrmtEntry::SetActive()
{
+ maLbColorFormat.Show();
+
maLbDataBarMinType.Show();
maLbDataBarMaxType.Show();
maEdDataBarMin.Show();
@@ -1013,6 +1022,8 @@ void ScDataBarFrmtEntry::SetActive()
void ScDataBarFrmtEntry::SetInactive()
{
+ maLbColorFormat.Hide();
+
maLbDataBarMinType.Hide();
maLbDataBarMaxType.Hide();
maEdDataBarMin.Hide();