diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-12 15:09:51 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-14 10:52:47 +0200 |
commit | 56af9ab6bb38f8b795295080308cdab7b97e8acc (patch) | |
tree | cf11dd67ccc8c8feee2d06202b056d5da211f427 /dbaccess/source/ui/browser/unodatbr.cxx | |
parent | 4c6d1a2636941c559d78fcac36125ba1374330f9 (diff) |
loplugin: defaultparams
Change-Id: Ia66788f5db2da8c6259cd08f655b3cb7cb12ed59
Diffstat (limited to 'dbaccess/source/ui/browser/unodatbr.cxx')
-rw-r--r-- | dbaccess/source/ui/browser/unodatbr.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/browser/unodatbr.cxx b/dbaccess/source/ui/browser/unodatbr.cxx index 9ea96f927e8a..78f1c49b97bf 100644 --- a/dbaccess/source/ui/browser/unodatbr.cxx +++ b/dbaccess/source/ui/browser/unodatbr.cxx @@ -2587,7 +2587,7 @@ bool SbaTableQueryBrowser::implSelect( SvTreeListEntry* _pEntry ) // not really loaded m_pCurrentlyDisplayed = _pEntry; // tell the new entry it has been selected - selectPath(m_pCurrentlyDisplayed, true); + selectPath(m_pCurrentlyDisplayed); // get the name of the data source currently selected ensureConnection( m_pCurrentlyDisplayed, pConData->xConnection ); @@ -3757,7 +3757,7 @@ void SbaTableQueryBrowser::impl_cleanupDataSourceEntry( const OUString& _rDataSo { // a table or query belonging to the deleted data source is currently being displayed. OSL_ENSURE( m_pTreeView->getListBox().GetRootLevelParent( m_pCurrentlyDisplayed ) == pDataSourceEntry, "SbaTableQueryBrowser::impl_cleanupDataSourceEntry: inconsistence (1)!" ); - unloadAndCleanup( true ); + unloadAndCleanup(); } else OSL_ENSURE( |