From 3ffb8c2f58ae02ad201cd016f2331aed0523d46e Mon Sep 17 00:00:00 2001 From: Chris Sherlock Date: Thu, 27 Mar 2014 03:19:12 +1100 Subject: [PATCH] OutputDevice::EnableRTL should be virtual Change-Id: I5e89326659e018561114a2fee2532d4412c070af --- include/vcl/outdev.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 );