summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-02-02 17:27:36 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-02-02 17:27:36 +0000
commit755d64f7ac98db8ffceb56e1ed22cc04ddb7fa2f (patch)
treef4120d7fdb608632fd79b605549c8e7ce4411af1
parent92bd23d053963320bd3f457d13a3397515fa85ec (diff)
INTEGRATION: CWS geordi2q14 (1.112.24); FILE MERGED
2004/01/30 15:59:30 hr 1.112.24.1: #111934#: merge CWS ooo111fix2
-rw-r--r--vcl/unx/source/gdi/salgdi3.cxx12
1 files changed, 9 insertions, 3 deletions
diff --git a/vcl/unx/source/gdi/salgdi3.cxx b/vcl/unx/source/gdi/salgdi3.cxx
index 24433bef8b1e..b2de0eedef53 100644
--- a/vcl/unx/source/gdi/salgdi3.cxx
+++ b/vcl/unx/source/gdi/salgdi3.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: salgdi3.cxx,v $
*
- * $Revision: 1.112 $
+ * $Revision: 1.113 $
*
- * last change: $Author: vg $ $Date: 2004-01-06 14:39:03 $
+ * last change: $Author: hr $ $Date: 2004-02-02 18:27:36 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1355,10 +1355,16 @@ void X11SalGraphics::DrawServerFontLayout( const ServerFontLayout& rLayout )
if( aX11GlyphPeer.GetGlyphSet( rFont ) )
DrawServerAAFontString( rLayout );
- else if( aX11GlyphPeer.ForcedAntialiasing( rFont ) )
+ else
+#ifdef MACOSX
+ /* Simply draw everything antialiased, even the UI */
+ DrawServerAAForcedString( rLayout );
+#else
+ if( aX11GlyphPeer.ForcedAntialiasing( rFont ) )
DrawServerAAForcedString( rLayout );
else
DrawServerSimpleFontString( rLayout );
+#endif
}
#endif
}