summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-06-29 11:40:28 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-06-29 11:40:28 +0200
commit5c7c018b11c8bfb4791b61b00832ffe5b81e44f8 (patch)
treec1061f271190a2df6dad89286d5bf043ff29b90d /shell
parentf9509e7da32e3aa8e99c668f9f3f6d1b2c57fcb9 (diff)
loplugin:oncevar
Change-Id: Id5309e2d06551da6df05d06e436678b570740f78
Diffstat (limited to 'shell')
-rw-r--r--shell/source/backends/kde4be/kde4access.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/shell/source/backends/kde4be/kde4access.cxx b/shell/source/backends/kde4be/kde4access.cxx
index 5d962b71e901..ad1e417ad23f 100644
--- a/shell/source/backends/kde4be/kde4access.cxx
+++ b/shell/source/backends/kde4be/kde4access.cxx
@@ -83,9 +83,8 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
} else if (id == "EnableATToolSupport")
{
/* does not make much sense without an accessibility bridge */
- bool ATToolSupport = false;
return css::beans::Optional< css::uno::Any >(
- true, uno::makeAny( OUString::boolean( ATToolSupport ) ) );
+ true, uno::makeAny( OUString::boolean( false ) ) );
} else if (id == "WorkPathVariable")
{
QString aDocumentsDir( KGlobalSettings::documentPath() );