diff options
Diffstat (limited to 'connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx')
-rw-r--r-- | connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx b/connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx index 07b49af2af75..16d46f5efcc4 100644 --- a/connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx +++ b/connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx @@ -34,7 +34,7 @@ using namespace ::com::sun::star::lang; //************ Class: java.sql.Driver -jclass java_sql_DriverPropertyInfo::theClass = 0; +jclass java_sql_DriverPropertyInfo::theClass = nullptr; java_sql_DriverPropertyInfo::~java_sql_DriverPropertyInfo() {} @@ -120,8 +120,8 @@ Sequence< OUString> java_sql_DriverPropertyInfo::choices() jfieldID id = t.pEnv->GetFieldID(getMyClass(),"choices","[Ljava/lang/String;"); if(id) { - const java_lang_String * pEmpty = NULL; - const OUString * pEmpty2 = NULL; + const java_lang_String * pEmpty = nullptr; + const OUString * pEmpty2 = nullptr; return copyArrayAndDelete(t.pEnv, static_cast<jobjectArray>(t.pEnv->GetObjectField( object, id)), pEmpty2, pEmpty); } } //t.pEnv |