summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2012-10-19 15:20:10 +0200
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-10-19 15:25:28 +0200
commit49e5e750b51ae8b6ff5f8f98beedea1b4737c2fc (patch)
tree2bbc90e9fad34636176c2b4bb6530f7f833d2de1 /cui
parent4bc089dff22765614e0cb988a88ea71706ad3f00 (diff)
Merge SvLBoxTreeList and SvTreeList.
Change-Id: I318ff6f1009b1aaa7d0bd3abb250f92fb51a21cd
Diffstat (limited to 'cui')
-rw-r--r--cui/source/options/dbregister.cxx2
-rw-r--r--cui/source/options/optlingu.cxx6
-rw-r--r--cui/source/options/treeopt.cxx2
-rw-r--r--cui/source/options/webconninfo.cxx2
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();
}