diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-25 11:01:20 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-25 14:32:56 +0200 |
commit | b5e11641a7cec634c603213869a3475b1e01084e (patch) | |
tree | 330df25cfb778c4c3c793c86dc315706b651d10c /svx/source/gallery2 | |
parent | 436cd900956b5fd0b6583954c002f8c28ca32698 (diff) |
svtools: sal_Bool->bool
Change-Id: I90320997ed79be2556eafa4c35af6b968b378454
Diffstat (limited to 'svx/source/gallery2')
-rw-r--r-- | svx/source/gallery2/galmisc.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/gallery2/galmisc.cxx b/svx/source/gallery2/galmisc.cxx index 0721035749ec..05a7003af8de 100644 --- a/svx/source/gallery2/galmisc.cxx +++ b/svx/source/gallery2/galmisc.cxx @@ -507,10 +507,10 @@ void GalleryTransferable::AddSupportedFormats() } } -sal_Bool GalleryTransferable::GetData( const datatransfer::DataFlavor& rFlavor ) +bool GalleryTransferable::GetData( const datatransfer::DataFlavor& rFlavor ) { sal_uInt32 nFormat = SotExchange::GetFormat( rFlavor ); - sal_Bool bRet = sal_False; + bool bRet = false; InitData( false ); @@ -543,10 +543,10 @@ sal_Bool GalleryTransferable::GetData( const datatransfer::DataFlavor& rFlavor ) return bRet; } -sal_Bool GalleryTransferable::WriteObject( SotStorageStreamRef& rxOStm, void* pUserObject, +bool GalleryTransferable::WriteObject( SotStorageStreamRef& rxOStm, void* pUserObject, sal_uInt32, const datatransfer::DataFlavor& ) { - sal_Bool bRet = sal_False; + bool bRet = false; if( pUserObject ) { |