diff options
Diffstat (limited to 'cui/source')
-rw-r--r-- | cui/source/options/dbregister.cxx | 2 | ||||
-rw-r--r-- | cui/source/options/optlingu.cxx | 6 | ||||
-rw-r--r-- | cui/source/options/treeopt.cxx | 2 | ||||
-rw-r--r-- | cui/source/options/webconninfo.cxx | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/cui/source/options/dbregister.cxx b/cui/source/options/dbregister.cxx index 590d0fb79912..d04d3c816141 100644 --- a/cui/source/options/dbregister.cxx +++ b/cui/source/options/dbregister.cxx @@ -336,7 +336,7 @@ IMPL_LINK( DbRegistrationOptionsPage, HeaderSelect_Impl, HeaderBar*, pBar ) nBits |= HIB_UPARROW; } pHeaderBar->SetItemBits( ITEMID_TYPE, nBits ); - SvLBoxTreeList* pModel = pPathBox->GetModel(); + SvTreeList* pModel = pPathBox->GetModel(); pModel->SetSortMode( eMode ); pModel->Resort(); return 1; diff --git a/cui/source/options/optlingu.cxx b/cui/source/options/optlingu.cxx index f732a6aade39..f6b65f3919d1 100644 --- a/cui/source/options/optlingu.cxx +++ b/cui/source/options/optlingu.cxx @@ -1465,7 +1465,7 @@ void SvxLinguTabPage::Reset( const SfxItemSet& rSet ) aLinguOptionsCLB.SetUpdateMode(sal_False); aLinguOptionsCLB.Clear(); - SvLBoxTreeList *pModel = aLinguOptionsCLB.GetModel(); + SvTreeList *pModel = aLinguOptionsCLB.GetModel(); SvTreeListEntry* pEntry = NULL; sal_Int16 nVal = 0; @@ -2113,7 +2113,7 @@ IMPL_LINK( SvxEditModulesDlg, LangSelectHdl_Impl, ListBox *, pBox ) static Locale aLastLocale; Locale aCurLocale; SvxLanguageToLocale(aCurLocale, eCurLanguage); - SvLBoxTreeList *pModel = aModulesCLB.GetModel(); + SvTreeList *pModel = aModulesCLB.GetModel(); if (pBox) { @@ -2373,7 +2373,7 @@ IMPL_LINK( SvxEditModulesDlg, UpDownHdl_Impl, PushButton *, pBtn ) 0 != (pEntry = aModulesCLB.GetEntry(nCurPos))) { aModulesCLB.SetUpdateMode(sal_False); - SvLBoxTreeList *pModel = aModulesCLB.GetModel(); + SvTreeList *pModel = aModulesCLB.GetModel(); ModuleUserData_Impl* pData = (ModuleUserData_Impl*)pEntry->GetUserData(); String aStr(aModulesCLB.GetEntryText(pEntry)); diff --git a/cui/source/options/treeopt.cxx b/cui/source/options/treeopt.cxx index 050d750b8f1b..b0ed3a3fa64b 100644 --- a/cui/source/options/treeopt.cxx +++ b/cui/source/options/treeopt.cxx @@ -1838,7 +1838,7 @@ void OfaTreeOptionsDialog::ResizeTreeLB( void ) const long nIndent0 = PixelToLogic( Size( 28, 0 ) ).Width(); const long nIndent1 = PixelToLogic( Size( 52, 0 ) ).Width(); - SvLBoxTreeList* pTreeList = aTreeLB.GetModel(); + SvTreeList* pTreeList = aTreeLB.GetModel(); DBG_ASSERT( pTreeList, "-OfaTreeOptionsDialog::ResizeTreeLB(): no model, no cookies!" ); SvTreeListEntry* pEntry = pTreeList->First(); diff --git a/cui/source/options/webconninfo.cxx b/cui/source/options/webconninfo.cxx index b6f1bdc755ad..a0a9e034c5d9 100644 --- a/cui/source/options/webconninfo.cxx +++ b/cui/source/options/webconninfo.cxx @@ -74,7 +74,7 @@ void PasswordTable::Resort( bool bForced ) nBits |= HIB_UPARROW; } GetTheHeaderBar().SetItemBits( 1, nBits ); - SvLBoxTreeList* pListModel = GetModel(); + SvTreeList* pListModel = GetModel(); pListModel->SetSortMode( eMode ); pListModel->Resort(); } |