diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-03-27 03:19:12 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-03-28 00:45:21 +1100 |
commit | 3ffb8c2f58ae02ad201cd016f2331aed0523d46e (patch) | |
tree | f2fa5e13c563bb796393cfb69ab224d900264ad1 | |
parent | 512de6e75d34d2144392d1e78c25446f2d0b3a35 (diff) |
OutputDevice::EnableRTL should be virtual
Change-Id: I5e89326659e018561114a2fee2532d4412c070af
-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 9b115de4239a..35c48faeb900 100644 --- a/include/vcl/outdev.hxx +++ b/include/vcl/outdev.hxx @@ -1150,7 +1150,7 @@ public: bool IsMapModeEnabled() const { return mbMap; } // Enabling/disabling RTL only makes sense for OutputDevices that use a mirroring SalGraphisLayout - void EnableRTL( bool bEnable = true); + virtual void EnableRTL( bool bEnable = true); bool IsRTLEnabled() const { return mbEnableRTL; } void SetConnectMetaFile( GDIMetaFile* pMtf ); |