diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-05 14:46:08 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-05 14:46:37 +0000 |
commit | f1e96f263d3fddf028a8fd6e09c3a6781718aab7 (patch) | |
tree | bc64cf72ab62dae7e5ea873d34be825bca2784fa /vcl | |
parent | 8f542a605baec0b777effbb3e6666eff09a09a28 (diff) |
OutputDevice::ImplHasMirroredGraphics can be const
Change-Id: I639c4821d9ef4da04ccbed6b93f7e6e3b51ae74d
Diffstat (limited to 'vcl')
-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 0699ac786836..f2aedd17a9cf 100644 --- a/vcl/source/gdi/outdev.cxx +++ b/vcl/source/gdi/outdev.cxx @@ -496,7 +496,7 @@ void OutputDevice::EnableRTL( sal_Bool bEnable ) mpAlphaVDev->EnableRTL( bEnable ); } -sal_Bool OutputDevice::ImplHasMirroredGraphics() +bool OutputDevice::ImplHasMirroredGraphics() const { // HOTFIX for #i55719# if( meOutDevType == OUTDEV_PRINTER ) |