summaryrefslogtreecommitdiff
path: root/canvas/source/vcl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-10 17:35:25 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-10 17:36:04 +0100
commitfe23abd3812e08015facbbb2eb725dd990d63fa0 (patch)
tree05f39d446798ea695bc82df0e94d0bd5175342ba /canvas/source/vcl
parent340e70e248824a3a4959fa1dee90c5650f257ae8 (diff)
Be explicit when using bool as integral value
Change-Id: I3a6b9df9b1b6c48d5db506942d651f66cefdaa18
Diffstat (limited to 'canvas/source/vcl')
-rw-r--r--canvas/source/vcl/backbuffer.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/canvas/source/vcl/backbuffer.cxx b/canvas/source/vcl/backbuffer.cxx
index 2666c614c3f8..73d6320fcba5 100644
--- a/canvas/source/vcl/backbuffer.cxx
+++ b/canvas/source/vcl/backbuffer.cxx
@@ -26,7 +26,7 @@ namespace vclcanvas
BackBuffer::BackBuffer( const OutputDevice& rRefDevice,
bool bMonochromeBuffer ) :
maVDev( new VirtualDevice( rRefDevice,
- bMonochromeBuffer ) )
+ sal_uInt16(bMonochromeBuffer) ) )
{
if( !bMonochromeBuffer )
{