From 8405ee507ee66e8d07eb69254c2763b299bae6d2 Mon Sep 17 00:00:00 2001
From: Stephan Bergmann <sbergman@redhat.com>
Date: Thu, 11 Sep 2014 16:30:49 +0200
Subject: shell: sal_Bool -> bool

Change-Id: Ie4fedd95752aa1212481bff0cda7c0045956b361
---
 shell/source/backends/kde4be/kde4access.cxx | 2 +-
 shell/source/backends/kdebe/kdeaccess.cxx   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

(limited to 'shell')

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")
-- 
cgit