diff options
Diffstat (limited to 'connectivity/source/drivers/jdbc/Ref.cxx')
-rw-r--r-- | connectivity/source/drivers/jdbc/Ref.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/jdbc/Ref.cxx b/connectivity/source/drivers/jdbc/Ref.cxx index b6cad44e1b18..d2ef7854ceed 100644 --- a/connectivity/source/drivers/jdbc/Ref.cxx +++ b/connectivity/source/drivers/jdbc/Ref.cxx @@ -24,7 +24,7 @@ using namespace connectivity; //************ Class: java.sql.Ref -jclass java_sql_Ref::theClass = 0; +jclass java_sql_Ref::theClass = nullptr; java_sql_Ref::java_sql_Ref( JNIEnv * pEnv, jobject myObj ) : java_lang_Object( pEnv, myObj ) { @@ -45,7 +45,7 @@ jclass java_sql_Ref::getMyClass() const OUString SAL_CALL java_sql_Ref::getBaseTypeName( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) { - static jmethodID mID(NULL); + static jmethodID mID(nullptr); return callStringMethod("getBaseTypeName",mID); } |