diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-05-15 11:36:40 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-05-15 14:12:30 +0200 |
commit | 73f973df8fe588272e99d330d1b7b9254c9341d7 (patch) | |
tree | 49d4a2ff48a4f78e8214543a82337a4a59b1a342 /jvmfwk | |
parent | 898cbb22f07a2c1487700326f134fe54e7a13f4d (diff) |
Use symbolic JFW_FEATURE_ACCESSBRIDGE
(unclear why 43cc8abfb0a41878c4e78fd3b868b1d4f344c610 "#i20052# plugin lib for
java framework" hadn't done so from the start, when
2b24c46035657a8a43c6552328f7b4dda1622ce5 "#i20052# java framework" had already
introduced the macro)
Change-Id: I7f83e5ee68300438bcf7b49bdd12512ca0cbea42
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94286
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'jvmfwk')
-rw-r--r-- | jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx b/jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx index cec0ce97ff6a..6397cda3c045 100644 --- a/jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx +++ b/jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx @@ -168,7 +168,7 @@ std::unique_ptr<JavaInfo> createJavaInfo( return std::unique_ptr<JavaInfo>( new JavaInfo{ info->getVendor(), info->getHome(), info->getVersion(), - sal_uInt64(info->supportsAccessibility() ? 1 : 0), + sal_uInt64(info->supportsAccessibility() ? JFW_FEATURE_ACCESSBRIDGE : 0), sal_uInt64(info->needsRestart() ? JFW_REQUIRE_NEEDRESTART : 0), rtl::ByteSequence( reinterpret_cast<sal_Int8*>(sVendorData.pData->buffer), |