diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-10-15 16:21:55 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-10-19 11:45:36 +0200 |
commit | 293fd587f4836bd3358abb77ec06066f92fe18cc (patch) | |
tree | 7ba994d5aba32c765c6a2422a9d56c9a808af178 /dbaccess | |
parent | 78417304160a72d7ba10d14e21c31faa0bf4e966 (diff) |
Remove direct reference to SvTreeList outside svtools.
Change-Id: Ia8055a1bf21531aeb808d797b2a73a08a897e79c
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/querydesign/TableWindowListBox.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
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&) |