diff options
author | Tor Lillqvist <tml@collabora.com> | 2013-12-04 12:06:07 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2013-12-04 14:34:06 +0200 |
commit | 83e835156bc32bb904552465354b5b477a66d503 (patch) | |
tree | e7641b97f684ab63069d7af8c272799909a81dfb /include | |
parent | cce14c9717e3c21a61bbd4ce620d17fa23feafa2 (diff) |
Bin ATSUI code
TDF has been shipping a CoreText-using LO since 4.1 and the sky hasn't
fallen. Getting rid of the ATSUI code will make other needed
refactoring easier.
Change-Id: I494096c3988ea26fa2b336621857d32b64b040f0
Diffstat (limited to 'include')
-rw-r--r-- | include/sal/log-areas.dox | 1 | ||||
-rw-r--r-- | include/vcl/sysdata.hxx | 8 |
2 files changed, 0 insertions, 9 deletions
diff --git a/include/sal/log-areas.dox b/include/sal/log-areas.dox index 9845f569e691..3463a05fde14 100644 --- a/include/sal/log-areas.dox +++ b/include/sal/log-areas.dox @@ -332,7 +332,6 @@ certain functionality. @li @c vcl @li @c vcl.a11y @li @c vcl.app -@li @c vcl.atsui - ATSUI (obsolete) -using code for Mac OS X @li @c vcl.control @li @c vcl.coretext - CoreText-using code for Mac OS X and iOS @li @c vcl.emf - EMF/EMF+ processing diff --git a/include/vcl/sysdata.hxx b/include/vcl/sysdata.hxx index 78d756bfc994..58f3830f8d34 100644 --- a/include/vcl/sysdata.hxx +++ b/include/vcl/sysdata.hxx @@ -27,9 +27,7 @@ // predeclare the native classes to avoid header/include problems typedef struct CGContext *CGContextRef; typedef struct CGLayer *CGLayerRef; -#ifdef ENABLE_CORETEXT typedef const struct __CTFont * CTFontRef; -#endif #ifdef __OBJC__ @class NSView; #else @@ -214,9 +212,6 @@ struct SystemFontData #if defined( WNT ) HFONT hFont; // native font object #elif defined( MACOSX ) -#ifndef ENABLE_CORETEXT - void* aATSUFontID; // native font object -#endif #elif defined( UNX ) void* nFontId; // native font id int nFontFlags; // native font flags @@ -231,9 +226,6 @@ struct SystemFontData #if defined( WNT ) , hFont( 0 ) #elif defined( MACOSX ) -#ifndef ENABLE_CORETEXT - , aATSUFontID( NULL ) -#endif #elif defined( UNX ) , nFontId( NULL ) , nFontFlags( 0 ) |