summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/java/lang
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-12 16:04:04 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-10-12 17:52:29 +0200
commitb36963c0a6a09f70ca6d8d607dd3249a3496497d (patch)
tree33e06dc8d227957cb31355277fb5cf20b9918628 /connectivity/source/inc/java/lang
parentb08247a12b43fcd9f86ecd912fce7d69a3e66061 (diff)
Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY code
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
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 1bb61e09abff..682294709f24 100644
--- a/connectivity/source/inc/java/lang/Boolean.hxx
+++ b/connectivity/source/inc/java/lang/Boolean.hxx
@@ -31,7 +31,7 @@ namespace connectivity
// static Data for the class
static jclass theClass;
public:
- virtual jclass getMyClass() const SAL_OVERRIDE;
+ virtual jclass getMyClass() const override;
virtual ~java_lang_Boolean();
// 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 7aeb152b8e3d..2ad8e4c4f6fa 100644
--- a/connectivity/source/inc/java/lang/Class.hxx
+++ b/connectivity/source/inc/java/lang/Class.hxx
@@ -31,7 +31,7 @@ namespace connectivity
// static Data for the Class
static jclass theClass;
public:
- virtual jclass getMyClass() const SAL_OVERRIDE;
+ virtual jclass getMyClass() const override;
virtual ~java_lang_Class();
// 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 212491952cd2..fd0d670cb4a4 100644
--- a/connectivity/source/inc/java/lang/Exception.hxx
+++ b/connectivity/source/inc/java/lang/Exception.hxx
@@ -32,7 +32,7 @@ namespace connectivity
// statis Data for the class
static jclass theClass;
public:
- virtual jclass getMyClass() const SAL_OVERRIDE;
+ virtual jclass getMyClass() const override;
virtual ~java_lang_Exception();
// 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 0d05c3a46876..c39fbb84f871 100644
--- a/connectivity/source/inc/java/lang/String.hxx
+++ b/connectivity/source/inc/java/lang/String.hxx
@@ -29,7 +29,7 @@ namespace connectivity
// statis Data for the Class
static jclass theClass;
public:
- virtual jclass getMyClass() const SAL_OVERRIDE;
+ virtual jclass getMyClass() const override;
virtual ~java_lang_String();
// 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 d7377a9be01f..5cdbb83ab9b6 100644
--- a/connectivity/source/inc/java/lang/Throwable.hxx
+++ b/connectivity/source/inc/java/lang/Throwable.hxx
@@ -32,7 +32,7 @@ namespace connectivity
// static Data for the class
static jclass theClass;
public:
- virtual jclass getMyClass() const SAL_OVERRIDE;
+ virtual jclass getMyClass() const override;
virtual ~java_lang_Throwable();
// a Constructor, that is needed for when Returning the Object is needed:
java_lang_Throwable( JNIEnv * pEnv, jobject myObj ) : java_lang_Object( pEnv, myObj ){}