User: hr Date: 06/06/19 19:40:10 Modified: /dba/dbaccess/source/core/api/ querydescriptor.cxx
Log: INTEGRATION: CWS warnings01 (1.26.22); FILE MERGED 2006/03/24 15:35:49 fs 1.26.22.1: #i57457# warning-free code (unxlngi6/.pro + unxsoli4.pro) File Changes: Directory: /dba/dbaccess/source/core/api/ ========================================= File [changed]: querydescriptor.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/api/querydescriptor.cxx?r1=1.26&r2=1.27 Delta lines: +17 -6 -------------------- --- querydescriptor.cxx 3 Jan 2006 16:14:27 -0000 1.26 +++ querydescriptor.cxx 20 Jun 2006 02:40:08 -0000 1.27 @@ -82,12 +82,12 @@ DBG_NAME(OQueryDescriptor) //-------------------------------------------------------------------------- OQueryDescriptor::OQueryDescriptor() - : ODataSettings(m_aBHelper,sal_True) - ,OQueryDescriptor_Base(m_aMutex,*this) + :OQueryDescriptor_Base(m_aMutex,*this) + ,ODataSettings(m_aBHelper,sal_True) { DBG_CTOR(OQueryDescriptor,NULL); registerProperties(); - ODataSettings::registerProperties(this); + ODataSettings::registerPropertiesFor(this); } //-------------------------------------------------------------------------- @@ -97,7 +97,7 @@ { DBG_CTOR(OQueryDescriptor,NULL); registerProperties(); - ODataSettings::registerProperties(this); + ODataSettings::registerPropertiesFor(this); osl_incrementInterlockedCount(&m_refCount); @@ -120,7 +120,7 @@ { DBG_CTOR(OQueryDescriptor,NULL); registerProperties(); - ODataSettings::registerProperties(this); + ODataSettings::registerPropertiesFor(this); } // ----------------------------------------------------------------------------- IMPLEMENT_TYPEPROVIDER2(OQueryDescriptor,OQueryDescriptor_Base,ODataSettings); @@ -291,7 +291,18 @@ // ----------------------------------------------------------------------------- Reference< XPropertySet > OQueryDescriptor_Base::createEmptyObject() { + DBG_ERROR( "OQueryDescriptor_Base::createEmptyObject: never to be called!" ); return NULL; +} + +// ----------------------------------------------------------------------------- +void OQueryDescriptor_Base::columnDropped(const ::rtl::OUString& /*_sName*/) +{ +} + +// ----------------------------------------------------------------------------- +void OQueryDescriptor_Base::columnCloned(const Reference< XPropertySet >& /*_xClone*/) +{ } // ----------------------------------------------------------------------------- --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
