diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2023-11-20 07:31:30 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2023-11-20 09:40:49 +0100 |
commit | 730a704f7fa78ef340925eea163525a7ae5be224 (patch) | |
tree | 031e90f1b0f421fab89ae762c518e9fa2cbd3ee8 /bridges | |
parent | 5c374284b751131e695c04f0d77a0958f153a501 (diff) |
Extended loplugin:ostr: bridges
Change-Id: I8eefb64e75933ea9a4fbadb501182fc61bbf11b5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159727
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/source/jni_uno/jni_info.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridges/source/jni_uno/jni_info.cxx b/bridges/source/jni_uno/jni_info.cxx index 0195ed9d1300..a48412897d1b 100644 --- a/bridges/source/jni_uno/jni_info.cxx +++ b/bridges/source/jni_uno/jni_info.cxx @@ -297,7 +297,7 @@ JNI_compound_type_info::JNI_compound_type_info( && reinterpret_cast< typelib_StructTypeDescription * >( td)->pParameterizedTypes[nPos]) { - sig = OString( "Ljava/lang/Object;" ); + sig = "Ljava/lang/Object;"_ostr; } else { OStringBuffer sig_buf( 32 ); JNI_info::append_sig( &sig_buf, td->ppTypeRefs[ nPos ] ); |