diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-02-05 18:18:02 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-02-05 18:18:02 +0200 |
commit | a093cea5daf5a6e934bf7c5aa5acfc66a644637f (patch) | |
tree | 2d8872ebc4e1d4508e95dee7d1ac3d906e12256a /vcl/source | |
parent | 5350d30b10ebcd939d4b2ca5f142d6c5a3444f42 (diff) |
WaE: [loplugin:literaltoboolconversion]
Change-Id: I4025c6a00ed6f9dc3522701bcd85153276626330
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/gdi/outdev.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/outdev.cxx b/vcl/source/gdi/outdev.cxx index 55bcb876201b..817437965907 100644 --- a/vcl/source/gdi/outdev.cxx +++ b/vcl/source/gdi/outdev.cxx @@ -500,7 +500,7 @@ bool OutputDevice::ImplHasMirroredGraphics() const { // HOTFIX for #i55719# if( meOutDevType == OUTDEV_PRINTER ) - return sal_False; + return false; return ( ImplGetGraphics() && (mpGraphics->GetLayout() & SAL_LAYOUT_BIDI_RTL) ); } |