diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-06-07 02:26:01 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-06-07 02:27:53 +0900 |
commit | 50a4018d0d95652b73175f37740c9c7dd13ca4e0 (patch) | |
tree | e9ea999d8e8ba2937507a53a2ea959cca88b74cc /sd/source | |
parent | bd40bfd897f193857de10f64bbc47909c4ea5757 (diff) |
sal_Bool to bool
Change-Id: I58efb9d026203c77d3806552bd4280a4d16d5111
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/ui/unoidl/unopage.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/unoidl/unopage.cxx b/sd/source/ui/unoidl/unopage.cxx index 12926e270387..1fb509a236f6 100644 --- a/sd/source/ui/unoidl/unopage.cxx +++ b/sd/source/ui/unoidl/unopage.cxx @@ -1090,7 +1090,7 @@ Any SAL_CALL SdGenericDrawPage::getPropertyValue( const OUString& PropertyName ) pMetaFile->SetPrefSize( aSize ); SvMemoryStream aDestStrm( 65535, 65535 ); - ConvertGDIMetaFileToWMF( *pMetaFile, aDestStrm, NULL, sal_False ); + ConvertGDIMetaFileToWMF( *pMetaFile, aDestStrm, NULL, false ); Sequence<sal_Int8> aSeq( (sal_Int8*)aDestStrm.GetData(), aDestStrm.Tell() ); aAny <<= aSeq; } |