summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/java/lang
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/inc/java/lang')
-rw-r--r--connectivity/source/inc/java/lang/Boolean.hxx2
-rw-r--r--connectivity/source/inc/java/lang/Class.hxx2
-rw-r--r--connectivity/source/inc/java/lang/Exception.hxx2
-rw-r--r--connectivity/source/inc/java/lang/String.hxx2
-rw-r--r--connectivity/source/inc/java/lang/Throwable.hxx2
5 files changed, 5 insertions, 5 deletions
diff --git a/connectivity/source/inc/java/lang/Boolean.hxx b/connectivity/source/inc/java/lang/Boolean.hxx
index 682294709f24..399a9191ca46 100644
--- a/connectivity/source/inc/java/lang/Boolean.hxx
+++ b/connectivity/source/inc/java/lang/Boolean.hxx
@@ -32,7 +32,7 @@ namespace connectivity
static jclass theClass;
public:
virtual jclass getMyClass() const override;
- virtual ~java_lang_Boolean();
+ virtual ~java_lang_Boolean() override;
// a Constructor, that is needed for when Returning the Object is needed:
java_lang_Boolean( JNIEnv * pEnv, jobject myObj ) : java_lang_Object( pEnv, myObj ){}
diff --git a/connectivity/source/inc/java/lang/Class.hxx b/connectivity/source/inc/java/lang/Class.hxx
index 2ad8e4c4f6fa..8dc8b3fb6eea 100644
--- a/connectivity/source/inc/java/lang/Class.hxx
+++ b/connectivity/source/inc/java/lang/Class.hxx
@@ -32,7 +32,7 @@ namespace connectivity
static jclass theClass;
public:
virtual jclass getMyClass() const override;
- virtual ~java_lang_Class();
+ virtual ~java_lang_Class() override;
// a Constructor, that is needed for when Returning the Object is needed:
java_lang_Class( JNIEnv * pEnv, jobject myObj ) : java_lang_Object( pEnv, myObj ){}
diff --git a/connectivity/source/inc/java/lang/Exception.hxx b/connectivity/source/inc/java/lang/Exception.hxx
index fd0d670cb4a4..ea63cbcf3240 100644
--- a/connectivity/source/inc/java/lang/Exception.hxx
+++ b/connectivity/source/inc/java/lang/Exception.hxx
@@ -33,7 +33,7 @@ namespace connectivity
static jclass theClass;
public:
virtual jclass getMyClass() const override;
- virtual ~java_lang_Exception();
+ virtual ~java_lang_Exception() override;
// a Constructor, that is needed for when Returning the Object is needed:
java_lang_Exception( JNIEnv * pEnv, jobject myObj ) : java_lang_Throwable( pEnv, myObj ){}
diff --git a/connectivity/source/inc/java/lang/String.hxx b/connectivity/source/inc/java/lang/String.hxx
index c39fbb84f871..45807594c9ea 100644
--- a/connectivity/source/inc/java/lang/String.hxx
+++ b/connectivity/source/inc/java/lang/String.hxx
@@ -30,7 +30,7 @@ namespace connectivity
static jclass theClass;
public:
virtual jclass getMyClass() const override;
- virtual ~java_lang_String();
+ virtual ~java_lang_String() override;
// a Constructor, that is needed for when Returning the Object is needed:
java_lang_String( JNIEnv * pEnv, jobject myObj ) : java_lang_Object( pEnv, myObj ){}
diff --git a/connectivity/source/inc/java/lang/Throwable.hxx b/connectivity/source/inc/java/lang/Throwable.hxx
index 5cdbb83ab9b6..898d1b84100d 100644
--- a/connectivity/source/inc/java/lang/Throwable.hxx
+++ b/connectivity/source/inc/java/lang/Throwable.hxx
@@ -33,7 +33,7 @@ namespace connectivity
static jclass theClass;
public:
virtual jclass getMyClass() const override;
- virtual ~java_lang_Throwable();
+ virtual ~java_lang_Throwable() override;
// a Constructor, that is needed for when Returning the Object is needed:
java_lang_Throwable( JNIEnv * pEnv, jobject myObj ) : java_lang_Object( pEnv, myObj ){}
OUString getMessage() const;