summaryrefslogtreecommitdiff
path: root/bridges
diff options
context:
space:
mode:
Diffstat (limited to 'bridges')
-rw-r--r--bridges/source/jni_uno/jni_info.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bridges/source/jni_uno/jni_info.h b/bridges/source/jni_uno/jni_info.h
index 577a74c469fd..f40c26e88eef 100644
--- a/bridges/source/jni_uno/jni_info.h
+++ b/bridges/source/jni_uno/jni_info.h
@@ -51,7 +51,7 @@ inline bool type_equals(
OUString::unacquired( &type1->pTypeName );
OUString const & name2 =
OUString::unacquired( &type2->pTypeName );
- return ((type1->eTypeClass == type2->eTypeClass) && name1.equals( name2 ));
+ return ((type1->eTypeClass == type2->eTypeClass) && name1 == name2);
}
inline bool is_XInterface( typelib_TypeDescriptionReference * type )