Tag: cws_src680_dba203d User: oj Date: 06/05/18 05:42:57 Modified: /dba/dbaccess/source/core/misc/ PropertyForward.cxx
Log: #133913# check if m_xDest is NULL! File Changes: Directory: /dba/dbaccess/source/core/misc/ ========================================== File [changed]: PropertyForward.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/misc/PropertyForward.cxx?r1=1.4&r2=1.4.138.1 Delta lines: +12 -9 -------------------- --- PropertyForward.cxx 8 Sep 2005 13:55:29 -0000 1.4 +++ PropertyForward.cxx 18 May 2006 12:42:54 -0000 1.4.138.1 @@ -4,9 +4,9 @@ * * $RCSfile: PropertyForward.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.4.138.1 $ * - * last change: $Author: rt $ $Date: 2005/09/08 13:55:29 $ + * last change: $Author: oj $ $Date: 2006/05/18 12:42:54 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -116,12 +116,15 @@ if ( xFactory.is() ) { m_xDest = xFactory->createDataDescriptor(); + if ( m_xDest.is() ) + { ::comphelper::copyProperties(m_xSource,m_xDest); m_bInInsert = sal_True; Reference<XAppend> xAppend(m_xDestContainer,UNO_QUERY); if ( xAppend.is() ) xAppend->appendByDescriptor(m_xDest); m_bInInsert = sal_False; + } } } if ( m_xDest.is() ) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
