diff options
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/source/jni_uno/jni_info.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bridges/source/jni_uno/jni_info.h b/bridges/source/jni_uno/jni_info.h index fe7c0a108ccc..c92cd334dbe9 100644 --- a/bridges/source/jni_uno/jni_info.h +++ b/bridges/source/jni_uno/jni_info.h @@ -79,7 +79,7 @@ struct JNI_interface_type_info : public JNI_type_info // sorted via typelib function index jmethodID * m_methods; - virtual void destroy( JNIEnv * jni_env ); + virtual void destroy( JNIEnv * jni_env ) SAL_OVERRIDE; explicit JNI_interface_type_info( JNI_context const & jni, typelib_TypeDescription * td ); }; @@ -92,7 +92,7 @@ struct JNI_compound_type_info : public JNI_type_info // sorted via typelib member index jfieldID * m_fields; - virtual void destroy( JNIEnv * jni_env ); + virtual void destroy( JNIEnv * jni_env ) SAL_OVERRIDE; explicit JNI_compound_type_info( JNI_context const & jni, typelib_TypeDescription * td ); }; |