summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/java/sql/Timestamp.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/inc/java/sql/Timestamp.hxx')
-rw-r--r--connectivity/source/inc/java/sql/Timestamp.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/inc/java/sql/Timestamp.hxx b/connectivity/source/inc/java/sql/Timestamp.hxx
index d05505119888..968638ad079c 100644
--- a/connectivity/source/inc/java/sql/Timestamp.hxx
+++ b/connectivity/source/inc/java/sql/Timestamp.hxx
@@ -37,7 +37,7 @@ namespace connectivity
static jclass theClass;
public:
virtual jclass getMyClass() const override;
- virtual ~java_sql_Date();
+ virtual ~java_sql_Date() override;
// A ctor that is needed for returning the object
java_sql_Date( JNIEnv * pEnv, jobject myObj ) : java_util_Date(pEnv,myObj){}
java_sql_Date( const css::util::Date& _rOut );
@@ -57,7 +57,7 @@ namespace connectivity
static jclass theClass;
public:
virtual jclass getMyClass() const override;
- virtual ~java_sql_Time();
+ virtual ~java_sql_Time() override;
// A ctor that is needed for returning the object
java_sql_Time( JNIEnv * pEnv, jobject myObj ) : java_util_Date( pEnv, myObj ){}
java_sql_Time( const css::util::Time& _rOut );
@@ -75,7 +75,7 @@ namespace connectivity
static jclass theClass;
public:
virtual jclass getMyClass() const override;
- virtual ~java_sql_Timestamp();
+ virtual ~java_sql_Timestamp() override;
// A ctor that is needed for returning the object
java_sql_Timestamp( JNIEnv * pEnv, jobject myObj ) : java_util_Date( pEnv, myObj ){}
java_sql_Timestamp( const css::util::DateTime& _rOut);