User: hr Date: 05/09/23 05:04:08 Modified: /dba/dbaccess/source/core/dataaccess/ ComponentDefinition.cxx
Log: INTEGRATION: CWS dba201b (1.3.118); FILE MERGED 2005/09/21 06:55:11 oj 1.3.118.2: RESYNC: (1.3-1.4); FILE MERGED 2005/07/11 13:37:00 fs 1.3.118.1: merging CWS dba201 into CWS dba201b File Changes: Directory: /dba/dbaccess/source/core/dataaccess/ ================================================ File [changed]: ComponentDefinition.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/dataaccess/ComponentDefinition.cxx?r1=1.4&r2=1.5 Delta lines: +7 -1 ------------------- --- ComponentDefinition.cxx 8 Sep 2005 10:13:11 -0000 1.4 +++ ComponentDefinition.cxx 23 Sep 2005 12:04:05 -0000 1.5 @@ -61,6 +61,9 @@ #ifndef _DBACORE_DEFINITIONCOLUMN_HXX_ #include "definitioncolumn.hxx" #endif +#ifndef DBA_COREDATAACCESS_CHILDHELPER_HXX +#include "ChildHelper.hxx" +#endif using namespace ::com::sun::star::uno; @@ -276,7 +279,10 @@ Reference<XChild> xChild(xProp,UNO_QUERY); if ( xChild.is() ) - xChild->setParent(static_cast<XChild*>(static_cast<TXChild*>((m_pColumns.get())))); + { + Reference<XChild> xParent = new OChildHelper_Impl(static_cast<XChild*>(static_cast<TXChild*>((m_pColumns.get())))); + xChild->setParent(xParent); + } // helptext etc. may be modified notifyDataSourceModified(); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
