User: obo Date: 2006/07/10 08:08:16 Modified: dba/dbaccess/source/core/dataaccess/ContentHelper.cxx
Log: INTEGRATION: CWS qiq (1.5.124); FILE MERGED 2006/06/27 12:00:07 fs 1.5.124.2: RESYNC: (1.5-1.6); FILE MERGED 2006/06/16 11:47:38 fs 1.5.124.1: during #i51143#: refactored VCollection: - createEmptyObject now named createDescriptor - cloneObject removed - appendObject now returns the newly created object (previously done via a subsequent call to cloneObject) File Changes: Directory: /dba/dbaccess/source/core/dataaccess/ ================================================ File [changed]: ContentHelper.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/dataaccess/ContentHelper.cxx?r1=1.6&r2=1.7 Delta lines: +12 -0 -------------------- --- ContentHelper.cxx 20 Jun 2006 02:42:59 -0000 1.6 +++ ContentHelper.cxx 10 Jul 2006 15:08:14 -0000 1.7 @@ -645,6 +645,18 @@ } // ----------------------------------------------------------------------------- +OContentHelper* OContentHelper::getImplementation( const Reference< XInterface >& _rxComponent ) +{ + OContentHelper* pContent( NULL ); + + Reference< XUnoTunnel > xUnoTunnel( _rxComponent, UNO_QUERY ); + if ( xUnoTunnel.is() ) + pContent = reinterpret_cast< OContentHelper* >( xUnoTunnel->getSomething( getUnoTunnelImplementationId() ) ); + + return pContent; +} + +// ----------------------------------------------------------------------------- Reference< XInterface > SAL_CALL OContentHelper::getParent( ) throw (RuntimeException) { ::osl::MutexGuard aGuard(m_aMutex); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
