Kaydet (Commit) 8405ee50 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

shell: sal_Bool -> bool

Change-Id: Ie4fedd95752aa1212481bff0cda7c0045956b361
üst 8cf6ba8a
......@@ -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")
......
......@@ -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")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment