diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-03-26 00:10:58 +1100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-25 13:28:49 +0000 |
commit | d4071188b8572441fd9c2b592e44a5ebfd1f1430 (patch) | |
tree | c41a3839e090430eab7e9d82a2ea19a8e1ace666 /include | |
parent | bc43fc2fb27eab02a949832626ce1a9dc380ee6b (diff) |
Fix to commit 03568b2e2405fc44435b95720f3680ab1daea836
During a rebase I accidentally removed the VirtualDevice::EnableRTL().
Also taking the opportunity to make the function virtual in window.hxx.
Change-Id: Ic239d8dc131dfcc6b049c30d2fad4d2d12059059
Reviewed-on: https://gerrit.libreoffice.org/8745
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/virdev.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/virdev.hxx b/include/vcl/virdev.hxx index e5e5c54eda6f..f413e4852323 100644 --- a/include/vcl/virdev.hxx +++ b/include/vcl/virdev.hxx @@ -113,7 +113,7 @@ public: virtual ~VirtualDevice(); - void EnableRTL( bool bEnable = true ); + virtual void EnableRTL( bool bEnable = true ); bool SetOutputSizePixel( const Size& rNewSize, bool bErase = true ); bool SetOutputSizePixelScaleOffsetAndBuffer( const Size& rNewSize, const Fraction& rScale, const Point& rNewOffset, const basebmp::RawMemorySharedArray &pBuffer ); |