User: obo Date: 05/01/25 08:58:12 Modified: /dba/connectivity/source/drivers/jdbc/ DriverPropertyInfo.cxx
Log: INTEGRATION: CWS gcj1 (1.4.174); FILE MERGED 2005/01/05 08:54:42 cmc 1.4.174.1: #i38188# small gcc parse help required File Changes: Directory: /dba/connectivity/source/drivers/jdbc/ ================================================= File [changed]: DriverPropertyInfo.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx?r1=1.5&r2=1.6 Delta lines: +4 -6 ------------------- --- DriverPropertyInfo.cxx 21 Jan 2005 16:41:58 -0000 1.5 +++ DriverPropertyInfo.cxx 25 Jan 2005 16:58:08 -0000 1.6 @@ -184,12 +184,10 @@ { jfieldID id = t.pEnv->GetFieldID(java_sql_DriverPropertyInfo::getMyClass(),"choices","[Ljava/lang/String;"); if(id) - return copyArrayAndDelete( - t.pEnv, - (jobjectArray)t.pEnv->GetObjectField( object, id), - static_cast< const ::rtl::OUString* >( NULL ), - static_cast< const java_lang_String* >( NULL ) - ); + { + java_lang_String aEmpty(NULL,NULL); + return copyArrayAndDelete(t.pEnv,(jobjectArray)t.pEnv->GetObjectField( object, id), ::rtl::OUString(),aEmpty); + } } //t.pEnv return Sequence< ::rtl::OUString>(); } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
