summaryrefslogtreecommitdiff
path: root/jvmfwk
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-06-25 10:05:29 +0000
committerKurt Zenker <kz@openoffice.org>2008-06-25 10:05:29 +0000
commitf332b9f1234e9d5101ce449779d4c4fecd68072d (patch)
tree1c552b8c3884d6becf16631cc649b2064b7266fc /jvmfwk
parentc4dde495c2a61789952e4abbe43a2873c092d2b8 (diff)
INTEGRATION: CWS jl102 (1.29.14); FILE MERGED
2008/06/18 08:44:29 jl 1.29.14.2: RESYNC: (1.29-1.30); FILE MERGED 2008/06/04 13:07:44 jl 1.29.14.1: #i90301# using bootstrap variable to switch of examination of system uses accessibility tools
Diffstat (limited to 'jvmfwk')
-rw-r--r--jvmfwk/source/fwkutil.cxx9
1 files changed, 8 insertions, 1 deletions
diff --git a/jvmfwk/source/fwkutil.cxx b/jvmfwk/source/fwkutil.cxx
index f50a2a91afb5..870b3123a4d7 100644
--- a/jvmfwk/source/fwkutil.cxx
+++ b/jvmfwk/source/fwkutil.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: fwkutil.cxx,v $
- * $Revision: 1.30 $
+ * $Revision: 1.31 $
*
* This file is part of OpenOffice.org.
*
@@ -68,6 +68,13 @@ namespace jfw
bool isAccessibilitySupportDesired()
{
+ OUString sValue;
+ if ((sal_True == ::rtl::Bootstrap::get(
+ OUString(RTL_CONSTASCII_USTRINGPARAM("JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY")), sValue))
+ && sValue.equals(OUString(RTL_CONSTASCII_USTRINGPARAM("1")))
+ )
+ return false;
+
bool retVal = false;
#ifdef WNT
HKEY hKey = 0;