summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-07-20 16:28:09 +0200
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-07-20 22:11:02 +0200
commit60075ca574b9f1e2f34908a7cb240005a35ee8b9 (patch)
tree3fcd46702f4ebda3c859d58e4c27bea3615dd5d8 /vcl
parent4a0cb642f18b674f37db8e9bd30942740df08e4c (diff)
vcl quartz: restore old outline front drawing
Change-Id: Idc2026ff65dfaf36ea4be21ae9557cf5534e8c6b
Diffstat (limited to 'vcl')
-rw-r--r--vcl/quartz/ctlayout.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/vcl/quartz/ctlayout.cxx b/vcl/quartz/ctlayout.cxx
index 53535dfdc1a6..b02ed158d976 100644
--- a/vcl/quartz/ctlayout.cxx
+++ b/vcl/quartz/ctlayout.cxx
@@ -353,7 +353,7 @@ bool CTLayout::DrawTextSpecial( SalGraphics& rGraphics, sal_uInt32 flags ) const
// short circuit if there is nothing to do
if( (mnCharCount <= 0) || !rAquaGraphics.CheckContext() )
return true;
-
+#if 0 /* temporarely revert to the 'old way' */
if (flags & DRAWTEXT_F_OUTLINE)
{
CFMutableDictionaryRef styledict = CFDictionaryCreateMutableCopy(
@@ -384,6 +384,7 @@ bool CTLayout::DrawTextSpecial( SalGraphics& rGraphics, sal_uInt32 flags ) const
return true;
}
else
+#endif
{
return SalLayout::DrawTextSpecial(rGraphics, flags);
}