summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-09-11 17:17:33 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-09-12 10:04:59 +0200
commit69ac0fa53b60bc2ab65a2590f3eb3f789bcfc31c (patch)
treee7f16dcfde76378da3d2ba2ac97e35c7b9362fc2 /toolkit
parentc356bd37bdebd5a9eea1d25c628212f071659158 (diff)
toolkit: sal_Bool -> bool
Change-Id: I8819d408e8556bbf38605c2feef2fa87d8dd41c3
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/source/awt/vclxwindows.cxx2
-rw-r--r--toolkit/source/helper/accessibilityclient.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/toolkit/source/awt/vclxwindows.cxx b/toolkit/source/awt/vclxwindows.cxx
index 71d4f03f291b..01fbbe0a132c 100644
--- a/toolkit/source/awt/vclxwindows.cxx
+++ b/toolkit/source/awt/vclxwindows.cxx
@@ -4370,7 +4370,7 @@ void VCLXComboBox::setProperty( const OUString& PropertyName, const ::com::sun::
pComboBox->EnableAutocomplete( n != 0 );
else
{
- sal_Bool b = sal_Bool();
+ bool b = bool();
if ( Value >>= b )
pComboBox->EnableAutocomplete( b );
}
diff --git a/toolkit/source/helper/accessibilityclient.cxx b/toolkit/source/helper/accessibilityclient.cxx
index 7dc37943acae..1ddf9b398e1f 100644
--- a/toolkit/source/helper/accessibilityclient.cxx
+++ b/toolkit/source/helper/accessibilityclient.cxx
@@ -116,7 +116,7 @@ namespace toolkit
return NULL;
}
::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >
- createAccessible( Menu* /*_pMenu*/, sal_Bool /*_bIsMenuBar*/ ) SAL_OVERRIDE
+ createAccessible( Menu* /*_pMenu*/, bool /*_bIsMenuBar*/ ) SAL_OVERRIDE
{
return NULL;
}