Tag: cws_src680_dba30 User: fs Date: 06/03/21 06:58:12 Modified: /dba/connectivity/source/commontools/ dbtools.cxx
Log: RESYNC: (1.57-1.59); FILE MERGED File Changes: Directory: /dba/connectivity/source/commontools/ ================================================ File [changed]: dbtools.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/commontools/dbtools.cxx?r1=1.57.8.1&r2=1.57.8.2 Delta lines: +7 -6 ------------------- --- dbtools.cxx 4 Jan 2006 11:13:25 -0000 1.57.8.1 +++ dbtools.cxx 21 Mar 2006 14:58:08 -0000 1.57.8.2 @@ -46,9 +46,6 @@ #ifndef _COMPHELPER_PROPERTY_HXX_ #include <comphelper/property.hxx> #endif -#ifndef _COMPHELPER_DATETIME_HXX_ -#include <comphelper/datetime.hxx> -#endif #ifndef _CONNECTIVITY_CONNCLEANUP_HXX_ #include <connectivity/conncleanup.hxx> #endif @@ -939,6 +936,10 @@ { try { + OSL_ENSURE( xOldProps.is() && xNewProps.is(), "TransferFormComponentProperties: invalid source/dest!" ); + if ( !xOldProps.is() || !xNewProps.is() ) + return; + // kopieren wir erst mal alle Props, die in Quelle und Ziel vorhanden sind und identische Beschreibungen haben Reference< XPropertySetInfo> xOldInfo( xOldProps->getPropertySetInfo()); Reference< XPropertySetInfo> xNewInfo( xNewProps->getPropertySetInfo()); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
