From 293fd587f4836bd3358abb77ec06066f92fe18cc Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Mon, 15 Oct 2012 16:21:55 -0400 Subject: Remove direct reference to SvTreeList outside svtools. Change-Id: Ia8055a1bf21531aeb808d797b2a73a08a897e79c --- dbaccess/source/ui/querydesign/TableWindowListBox.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dbaccess') diff --git a/dbaccess/source/ui/querydesign/TableWindowListBox.cxx b/dbaccess/source/ui/querydesign/TableWindowListBox.cxx index 87ca37dbba6b..227727bf0020 100644 --- a/dbaccess/source/ui/querydesign/TableWindowListBox.cxx +++ b/dbaccess/source/ui/querydesign/TableWindowListBox.cxx @@ -90,8 +90,8 @@ SvLBoxEntry* OTableWindowListBox::GetEntryFromText( const String& rEntryText ) { ////////////////////////////////////////////////////////////////////// // Liste durchiterieren - SvTreeList* pTreeList = GetModel(); - SvLBoxEntry* pEntry = (SvLBoxEntry*)pTreeList->First(); + SvLBoxTreeList* pTreeList = GetModel(); + SvLBoxEntry* pEntry = pTreeList->First(); OJoinDesignView* pView = m_pTabWin->getDesignView(); OJoinController& rController = pView->getController(); @@ -111,7 +111,7 @@ SvLBoxEntry* OTableWindowListBox::GetEntryFromText( const String& rEntryText ) { return pEntry; } - pEntry = (SvLBoxEntry*)pTreeList->Next( pEntry ); + pEntry = pTreeList->Next(pEntry); } } catch(SQLException&) -- cgit