diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-10-19 15:20:10 +0200 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-10-19 15:25:28 +0200 |
commit | 49e5e750b51ae8b6ff5f8f98beedea1b4737c2fc (patch) | |
tree | 2bbc90e9fad34636176c2b4bb6530f7f833d2de1 /sc | |
parent | 4bc089dff22765614e0cb988a88ea71706ad3f00 (diff) |
Merge SvLBoxTreeList and SvTreeList.
Change-Id: I318ff6f1009b1aaa7d0bd3abb250f92fb51a21cd
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/miscdlgs/solveroptions.cxx | 4 | ||||
-rw-r--r-- | sc/source/ui/optdlg/calcoptionsdlg.cxx | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/ui/miscdlgs/solveroptions.cxx b/sc/source/ui/miscdlgs/solveroptions.cxx index 5dba814170ec..f86808b00766 100644 --- a/sc/source/ui/miscdlgs/solveroptions.cxx +++ b/sc/source/ui/miscdlgs/solveroptions.cxx @@ -194,7 +194,7 @@ const uno::Sequence<beans::PropertyValue>& ScSolverOptionsDialog::GetProperties( // update maProperties from list box content // order of entries in list box and maProperties is the same sal_Int32 nEntryCount = maProperties.getLength(); - SvLBoxTreeList* pModel = maLbSettings.GetModel(); + SvTreeList* pModel = maLbSettings.GetModel(); if ( nEntryCount == (sal_Int32)pModel->GetEntryCount() ) { for (sal_Int32 nEntryPos=0; nEntryPos<nEntryCount; ++nEntryPos) @@ -267,7 +267,7 @@ void ScSolverOptionsDialog::FillListBox() if (!mpCheckButtonData) mpCheckButtonData = new SvLBoxButtonData( &maLbSettings ); - SvLBoxTreeList* pModel = maLbSettings.GetModel(); + SvTreeList* pModel = maLbSettings.GetModel(); SvTreeListEntry* pEntry = NULL; for (sal_Int32 nPos=0; nPos<nCount; nPos++) diff --git a/sc/source/ui/optdlg/calcoptionsdlg.cxx b/sc/source/ui/optdlg/calcoptionsdlg.cxx index 0167bfb4fa22..2a7d0ef89c79 100644 --- a/sc/source/ui/optdlg/calcoptionsdlg.cxx +++ b/sc/source/ui/optdlg/calcoptionsdlg.cxx @@ -135,7 +135,7 @@ void ScCalcOptionsDialog::FillOptionsList() maLbSettings.SetUpdateMode(false); maLbSettings.Clear(); - SvLBoxTreeList* pModel = maLbSettings.GetModel(); + SvTreeList* pModel = maLbSettings.GetModel(); { // Syntax for INDIRECT function. @@ -235,7 +235,7 @@ void ScCalcOptionsDialog::ListOptionValueChanged() maLbSettings.SetUpdateMode(false); - SvLBoxTreeList* pModel = maLbSettings.GetModel(); + SvTreeList* pModel = maLbSettings.GetModel(); SvTreeListEntry* pEntry = pModel->GetEntry(NULL, 0); if (!pEntry) return; @@ -263,7 +263,7 @@ void ScCalcOptionsDialog::RadioValueChanged() maConfig.mbEmptyStringAsZero = maBtnTrue.IsChecked(); maLbSettings.SetUpdateMode(false); - SvLBoxTreeList* pModel = maLbSettings.GetModel(); + SvTreeList* pModel = maLbSettings.GetModel(); SvTreeListEntry* pEntry = pModel->GetEntry(NULL, 1); if (!pEntry) return; |