comphelper: sal_Bool -> bool sequel

Change-Id: I2b9bd19abf4510fccef0374a539069cb8222ccae
This commit is contained in:
Stephan Bergmann 2014-02-19 14:31:09 +01:00
parent 14a502e498
commit d12e472474
2 changed files with 6 additions and 6 deletions

View File

@ -1241,13 +1241,13 @@ bool EmbeddedObjectContainer::InsertGraphicStream( const com::sun::star::uno::Re
throw uno::RuntimeException();
xPropSet->setPropertyValue("UseCommonStoragePasswordEncryption",
uno::makeAny( (sal_Bool)sal_True ) );
uno::makeAny( true ) );
uno::Any aAny;
aAny <<= rMediaType;
xPropSet->setPropertyValue("MediaType", aAny );
xPropSet->setPropertyValue("Compressed",
uno::makeAny( (sal_Bool)sal_True ) );
uno::makeAny( true ) );
}
catch (const uno::Exception&)
{
@ -1271,9 +1271,9 @@ bool EmbeddedObjectContainer::InsertGraphicStreamDirectly( const com::sun::star:
aProps[0].Name = "MediaType";
aProps[0].Value <<= rMediaType;
aProps[1].Name = "UseCommonStoragePasswordEncryption";
aProps[1].Value <<= (sal_Bool)sal_True;
aProps[1].Value <<= true;
aProps[2].Name = "Compressed";
aProps[2].Value <<= (sal_Bool)sal_True;
aProps[2].Value <<= true;
if ( xReplacement->hasByName( rObjectName ) )
xReplacement->removeElement( rObjectName );

View File

@ -136,7 +136,7 @@ void SAL_CALL OOfficeRestartManager::notify( const uno::Any& /* aData */ )
uno::Reference< beans::XPropertySet > xPropertySet( xDesktop, uno::UNO_QUERY_THROW );
OUString aVetoPropName( "SuspendQuickstartVeto" );
uno::Any aValue;
aValue <<= (sal_Bool)sal_True;
aValue <<= true;
xPropertySet->setPropertyValue( aVetoPropName, aValue );
try
@ -147,7 +147,7 @@ void SAL_CALL OOfficeRestartManager::notify( const uno::Any& /* aData */ )
if ( !bSuccess )
{
aValue <<= (sal_Bool)sal_False;
aValue <<= false;
xPropertySet->setPropertyValue( aVetoPropName, aValue );
}
}