Tag: cws_src680_hsqlcsv User: fs Date: 2006/10/11 02:44:53 Modified: dba/dbaccess/source/ui/control/tabletree.cxx
Log: RESYNC: (1.29-1.32); FILE MERGED File Changes: Directory: /dba/dbaccess/source/ui/control/ =========================================== File [changed]: tabletree.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/control/tabletree.cxx?r1=1.29.18.3&r2=1.29.18.4 Delta lines: +16 -19 --------------------- --- tabletree.cxx 19 Sep 2006 11:53:44 -0000 1.29.18.3 +++ tabletree.cxx 11 Oct 2006 09:44:50 -0000 1.29.18.4 @@ -33,6 +33,9 @@ * ************************************************************************/ +// MARKER(update_precomp.py): autogen include statement, do not remove +#include "precompiled_dbaccess.hxx" + #ifndef _DBAUI_TABLETREE_HXX_ #include "tabletree.hxx" #endif @@ -148,12 +151,6 @@ } // ----------------------------------------------------------------------------- -bool OTableTreeListBox::isFolderEntry( const SvLBoxEntry* _pEntry ) const -{ - return reinterpret_cast< int >( _pEntry->GetUserData() ) == FOLDER_INDICATOR; -} - -// ----------------------------------------------------------------------------- void OTableTreeListBox::notifyHiContrastChanged() { implSetDefaultImages(); @@ -283,9 +280,9 @@ { Reference< XDatabaseMetaData > xMeta( _rxConnection->getMetaData(), UNO_QUERY_THROW ); ::std::transform( pIter, pEnd, - aTables.begin(), OViewSetter( _rViews, xMeta->storesMixedCaseQuotedIdentifiers() ) ); + aTables.begin(), OViewSetter( _rViews, xMeta->supportsMixedCaseQuotedIdentifiers() ) ); } - catch( const Exception& ) + catch(Exception&) { DBG_UNHANDLED_EXCEPTION(); } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
