summaryrefslogtreecommitdiffstats
path: root/connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2005-01-26 08:32:48 +0000
committerOliver Bolte <obo@openoffice.org>2005-01-26 08:32:48 +0000
commit2a1a316a514a23d2116dba0e9b8294e3871f5aac (patch)
tree5f3383129153bfde02390d4e2c38776c3eaffff0 /connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx
parentINTEGRATION: CWS gcj1 (1.4.174); FILE MERGED (diff)
downloadcore-2a1a316a514a23d2116dba0e9b8294e3871f5aac.tar.gz
core-2a1a316a514a23d2116dba0e9b8294e3871f5aac.zip
#i10000# parse problems .NET 2003
Diffstat (limited to 'connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx')
-rw-r--r--connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx9
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>();