diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-03-15 02:46:47 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-03-15 02:48:55 +0100 |
commit | 72a3647e5c72d7065eda3b1925880790b8bca2f1 (patch) | |
tree | 8641866b9ddafa756f92a17ab1c1a54fe2e59036 /dbaccess | |
parent | bdc374eadf3c5b2a752eb5ce3cb346939b0fb77a (diff) |
dbaccess: fix ambiguity
Change-Id: Ib25a9eab4ff2b2ba078f18d21e5f697c4fd62460
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/browser/unodatbr.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/browser/unodatbr.cxx b/dbaccess/source/ui/browser/unodatbr.cxx index 253ddac2e0a2..764aec993f47 100644 --- a/dbaccess/source/ui/browser/unodatbr.cxx +++ b/dbaccess/source/ui/browser/unodatbr.cxx @@ -1170,7 +1170,7 @@ OUString SbaTableQueryBrowser::getDataSourceAcessor( SvTreeListEntry* _pDataSour DBTreeListUserData* pData = static_cast< DBTreeListUserData* >( _pDataSourceEntry->GetUserData() ); OSL_ENSURE( pData, "SbaTableQueryBrowser::getDataSourceAcessor: invalid entry data!" ); OSL_ENSURE( pData->eType == etDatasource, "SbaTableQueryBrowser::getDataSourceAcessor: entry does not denote a data source!" ); - return OUString( pData->sAccessor.Len() ? pData->sAccessor : GetEntryText( _pDataSourceEntry )); + return pData->sAccessor.Len() ? OUString(pData->sAccessor) : GetEntryText( _pDataSourceEntry ); } // ------------------------------------------------------------------------- |