diff options
5 files changed, 5 insertions, 5 deletions
diff --git a/canvas/source/directx/dx_spritecanvas.cxx b/canvas/source/directx/dx_spritecanvas.cxx index 291c19f704cc..16d728712e32 100644 --- a/canvas/source/directx/dx_spritecanvas.cxx +++ b/canvas/source/directx/dx_spritecanvas.cxx @@ -89,7 +89,7 @@ namespace dxcanvas awt::Rectangle aRect; maArguments[2] >>= aRect; - sal_Bool bIsFullscreen( false ); + bool bIsFullscreen( false ); maArguments[3] >>= bIsFullscreen; // setup helper diff --git a/connectivity/source/drivers/ado/AConnection.cxx b/connectivity/source/drivers/ado/AConnection.cxx index a61e12de76ae..d5a2a6066973 100644 --- a/connectivity/source/drivers/ado/AConnection.cxx +++ b/connectivity/source/drivers/ado/AConnection.cxx @@ -108,7 +108,7 @@ void OConnection::construct(const OUString& url,const Sequence< PropertyValue >& aDSN = aDSN.copy(7); sal_Int32 nTimeout = 20; - sal_Bool bSilent = true; + bool bSilent = true; const PropertyValue *pIter = info.getConstArray(); const PropertyValue *pEnd = pIter + info.getLength(); for(;pIter != pEnd;++pIter) diff --git a/extensions/source/ole/unoconversionutilities.hxx b/extensions/source/ole/unoconversionutilities.hxx index 1462997758af..430064f24aa4 100644 --- a/extensions/source/ole/unoconversionutilities.hxx +++ b/extensions/source/ole/unoconversionutilities.hxx @@ -794,7 +794,7 @@ void UnoConversionUtilities<T>::anyToVariant(VARIANT* pVariant, const Any& rAny) } case TypeClass_BOOLEAN: { - sal_Bool value; + bool value; if (rAny >>= value) { pVariant->vt = VT_BOOL; diff --git a/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx b/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx index e91d3fe735d2..b4c1e9bcc0ee 100644 --- a/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx +++ b/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx @@ -1074,7 +1074,7 @@ void VistaFilePickerImpl::impl_sta_SetControlValue(const RequestRef& rRequest) //case css::ui::dialogs::ExtendedFilePickerElementIds::CHECKBOX_PREVIEW : // can be ignored ... preview is supported native now ! case css::ui::dialogs::ExtendedFilePickerElementIds::CHECKBOX_SELECTION : { - sal_Bool bValue = false; + bool bValue = false; aValue >>= bValue; iCustom->SetCheckButtonState(nId, bValue); } diff --git a/winaccessibility/source/UAccCOM/MAccessible.cxx b/winaccessibility/source/UAccCOM/MAccessible.cxx index fd495a1a520f..b832c53f9f62 100644 --- a/winaccessibility/source/UAccCOM/MAccessible.cxx +++ b/winaccessibility/source/UAccCOM/MAccessible.cxx @@ -2678,7 +2678,7 @@ void CMAccessible::get_OLECHARFromAny(Any& pAny, OLECHAR* pChar) } case TypeClass_BOOLEAN: { - sal_Bool val; + bool val; pAny >>= val; swprintf( pChar, L"%d", val); break; |