diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-10-10 06:08:42 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-10-10 06:49:19 +0200 |
commit | 616662f48df7a13dd957918f43202ccb2d1899b3 (patch) | |
tree | df757221379b3dfd4dc2a1731e83662a21c41ad8 /sc | |
parent | 2757c7450de3369872a247cf4876bb1723cc48fa (diff) |
forgot to hide this list box when deactivating an entry
Change-Id: I9313a5ac542ca83be418b9c9aeca46e500c3ddaa
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/condformat/condformatdlgentry.cxx | 11 |
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(); |