summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-02-28 15:39:22 +0200
committerTor Lillqvist <tml@iki.fi>2013-02-28 22:34:23 +0200
commit7de08bcde91eece3ea4d5d5ba71cf9ba8aac6080 (patch)
tree77c7a4efc90b583f485bf9b837f11104ad19484f /vcl
parent7361c08a861a6e4f120d985156e8cdfe7c2f6dee (diff)
Don't SAL_INFO() a sal_Bool as a (binary) character
Change-Id: I6eb8ad74e215dca4b6c7b51939843afda67e44e5
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/virdev.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/gdi/virdev.cxx b/vcl/source/gdi/virdev.cxx
index 2f8585593fb5..87a74878f439 100644
--- a/vcl/source/gdi/virdev.cxx
+++ b/vcl/source/gdi/virdev.cxx
@@ -204,8 +204,8 @@ VirtualDevice::~VirtualDevice()
sal_Bool VirtualDevice::InnerImplSetOutputSizePixel( const Size& rNewSize, sal_Bool bErase, const basebmp::RawMemorySharedArray &pBuffer )
{
SAL_INFO( "vcl.gdi",
- "VirtualDevice::InnerImplSetOutputSizePixel( " << rNewSize.Width() << ", "
- << rNewSize.Height() << ", " << bErase << " )" );
+ "VirtualDevice::InnerImplSetOutputSizePixel( " << rNewSize.Width() << ", "
+ << rNewSize.Height() << ", " << int(bErase) << " )" );
if ( !mpVirDev )
return sal_False;