summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-06-07 02:26:01 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-06-07 02:27:53 +0900
commit50a4018d0d95652b73175f37740c9c7dd13ca4e0 (patch)
treee9ea999d8e8ba2937507a53a2ea959cca88b74cc /svtools
parentbd40bfd897f193857de10f64bbc47909c4ea5757 (diff)
sal_Bool to bool
Change-Id: I58efb9d026203c77d3806552bd4280a4d16d5111
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/misc/transfer.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/misc/transfer.cxx b/svtools/source/misc/transfer.cxx
index d7a107200a46..c1806c4fd1cf 100644
--- a/svtools/source/misc/transfer.cxx
+++ b/svtools/source/misc/transfer.cxx
@@ -416,7 +416,7 @@ Any SAL_CALL TransferableHelper::getTransferData( const DataFlavor& rFlavor ) th
SvMemoryStream aDstStm( 65535, 65535 );
// taking wmf without file header
- if ( ConvertGDIMetaFileToWMF( aMtf, aDstStm, NULL, sal_False ) )
+ if ( ConvertGDIMetaFileToWMF( aMtf, aDstStm, NULL, false ) )
{
maAny <<= ( aSeq = Sequence< sal_Int8 >( reinterpret_cast< const sal_Int8* >( aDstStm.GetData() ),
aDstStm.Seek( STREAM_SEEK_TO_END ) ) );