User: kz Date: 2008-06-25 12:41:51+0000 Modified: dba/dbaccess/source/ui/browser/dsEntriesNoExp.cxx
Log: INTEGRATION: CWS dba30d (1.22.12); FILE MERGED 2008/06/01 20:57:49 fs 1.22.12.1: minor re-factoring during #i80943# File Changes: Directory: /dba/dbaccess/source/ui/browser/ =========================================== File [changed]: dsEntriesNoExp.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/browser/dsEntriesNoExp.cxx?r1=1.22&r2=1.23 Delta lines: +8 -8 ------------------- --- dsEntriesNoExp.cxx 2008-04-22 15:19:30+0000 1.22 +++ dsEntriesNoExp.cxx 2008-06-25 12:41:48+0000 1.23 @@ -86,7 +86,7 @@ // ----------------------------------------------------------------------------- String SbaTableQueryBrowser::GetEntryText( SvLBoxEntry* _pEntry ) const { - return m_pTreeView->getListBox()->GetEntryText(_pEntry); + return m_pTreeView->getListBox().GetEntryText(_pEntry); } // ----------------------------------------------------------------------------- @@ -95,15 +95,15 @@ if (!_pEntry) return etUnknown; - SvLBoxEntry* pRootEntry = m_pTreeView->getListBox()->GetRootLevelParent(_pEntry); - SvLBoxEntry* pEntryParent = m_pTreeView->getListBox()->GetParent(_pEntry); - SvLBoxEntry* pTables = m_pTreeView->getListBox()->GetEntry(pRootEntry, CONTAINER_TABLES); - SvLBoxEntry* pQueries = m_pTreeView->getListBox()->GetEntry(pRootEntry, CONTAINER_QUERIES); + SvLBoxEntry* pRootEntry = m_pTreeView->getListBox().GetRootLevelParent(_pEntry); + SvLBoxEntry* pEntryParent = m_pTreeView->getListBox().GetParent(_pEntry); + SvLBoxEntry* pTables = m_pTreeView->getListBox().GetEntry(pRootEntry, CONTAINER_TABLES); + SvLBoxEntry* pQueries = m_pTreeView->getListBox().GetEntry(pRootEntry, CONTAINER_QUERIES); #ifdef DBG_UTIL String sTest; - if (pTables) sTest = m_pTreeView->getListBox()->GetEntryText(pTables); - if (pQueries) sTest = m_pTreeView->getListBox()->GetEntryText(pQueries); + if (pTables) sTest = m_pTreeView->getListBox().GetEntryText(pTables); + if (pQueries) sTest = m_pTreeView->getListBox().GetEntryText(pQueries); #endif if (pRootEntry == _pEntry) @@ -219,7 +219,7 @@ SvLBoxEntry* pEntryLoop = m_pTreeModel->First(); while ( pEntryLoop ) { - DBTreeListModel::DBTreeListUserData* pData = static_cast<DBTreeListModel::DBTreeListUserData*>(pEntryLoop->GetUserData()); + DBTreeListUserData* pData = static_cast<DBTreeListUserData*>(pEntryLoop->GetUserData()); if ( !pData ) { pEntryLoop = m_pTreeModel->Next(pEntryLoop); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
