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 /include/vcl | |
parent | 8f542a605baec0b777effbb3e6666eff09a09a28 (diff) |
OutputDevice::ImplHasMirroredGraphics can be const
Change-Id: I639c4821d9ef4da04ccbed6b93f7e6e3b51ae74d
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/outdev.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx index 42231357cc6f..8bf356d1fa58 100644 --- a/include/vcl/outdev.hxx +++ b/include/vcl/outdev.hxx @@ -359,7 +359,7 @@ public: SAL_DLLPRIVATE sal_Int32 ImplGetDPIY() const { return mnDPIY; } SAL_DLLPRIVATE SalGraphics* ImplGetGraphics() const; SAL_DLLPRIVATE void ImplReleaseGraphics( sal_Bool bRelease = sal_True ); - SAL_DLLPRIVATE sal_Bool ImplHasMirroredGraphics(); + SAL_DLLPRIVATE bool ImplHasMirroredGraphics() const; SAL_DLLPRIVATE void ImplReMirror( Point &rPoint ) const; SAL_DLLPRIVATE void ImplReMirror( Rectangle &rRect ) const; SAL_DLLPRIVATE void ImplReMirror( Region &rRegion ) const; |