summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-09-11 16:30:49 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-09-11 16:34:50 +0200
commit8405ee507ee66e8d07eb69254c2763b299bae6d2 (patch)
tree82fa32ff047cbfddbef924edddc6fbb27408b149 /shell
parent8cf6ba8a28f2c22817e94185121190f082c75754 (diff)
shell: sal_Bool -> bool
Change-Id: Ie4fedd95752aa1212481bff0cda7c0045956b361
Diffstat (limited to 'shell')
-rw-r--r--shell/source/backends/kde4be/kde4access.cxx2
-rw-r--r--shell/source/backends/kdebe/kdeaccess.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/shell/source/backends/kde4be/kde4access.cxx b/shell/source/backends/kde4be/kde4access.cxx
index 4cf3869aa871..33a778957f2b 100644
--- a/shell/source/backends/kde4be/kde4access.cxx
+++ b/shell/source/backends/kde4be/kde4access.cxx
@@ -83,7 +83,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
} else if (id == "EnableATToolSupport")
{
/* does not make much sense without an accessibility bridge */
- sal_Bool ATToolSupport = sal_False;
+ bool ATToolSupport = false;
return css::beans::Optional< css::uno::Any >(
true, uno::makeAny( OUString::boolean( ATToolSupport ) ) );
} else if (id == "WorkPathVariable")
diff --git a/shell/source/backends/kdebe/kdeaccess.cxx b/shell/source/backends/kdebe/kdeaccess.cxx
index cff355f0bd1a..b7de82a312be 100644
--- a/shell/source/backends/kdebe/kdeaccess.cxx
+++ b/shell/source/backends/kdebe/kdeaccess.cxx
@@ -79,7 +79,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
} else if (id == "EnableATToolSupport")
{
/* does not make much sense without an accessibility bridge */
- sal_Bool ATToolSupport = sal_False;
+ bool ATToolSupport = false;
return css::beans::Optional< css::uno::Any >(
true, uno::makeAny( OUString::boolean( ATToolSupport ) ) );
} else if (id == "WorkPathVariable")