diff options
author | Oliver Bolte <obo@openoffice.org> | 2005-01-26 08:32:48 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2005-01-26 08:32:48 +0000 |
commit | 2a1a316a514a23d2116dba0e9b8294e3871f5aac (patch) | |
tree | 5f3383129153bfde02390d4e2c38776c3eaffff0 | |
parent | 776fad793a924589d57925e7f17be0131a1a2350 (diff) |
#i10000# parse problems .NET 2003
-rw-r--r-- | connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx b/connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx index a7e24e169195..a22c54f1ce62 100644 --- a/connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx +++ b/connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx @@ -2,9 +2,9 @@ * * $RCSfile: DriverPropertyInfo.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: obo $ $Date: 2005-01-25 16:58:08 $ + * last change: $Author: obo $ $Date: 2005-01-26 09:32:48 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -185,8 +185,9 @@ Sequence< ::rtl::OUString> java_sql_DriverPropertyInfo::choices() const jfieldID id = t.pEnv->GetFieldID(java_sql_DriverPropertyInfo::getMyClass(),"choices","[Ljava/lang/String;"); if(id) { - java_lang_String aEmpty(NULL,NULL); - return copyArrayAndDelete(t.pEnv,(jobjectArray)t.pEnv->GetObjectField( object, id), ::rtl::OUString(),aEmpty); + const java_lang_String * pEmpty = NULL; + const ::rtl::OUString * pEmpty2 = NULL; + return copyArrayAndDelete(t.pEnv,(jobjectArray)t.pEnv->GetObjectField( object, id), pEmpty2, pEmpty); } } //t.pEnv return Sequence< ::rtl::OUString>(); |