From cdb613bafd976a3d915cdcfa92392e690a136855 Mon Sep 17 00:00:00 2001 From: DarkWyrm Date: Tue, 22 Jun 2004 14:42:58 +0000 Subject: [PATCH] Disabled some code until I can figure out the changes in FT2's font cache subsystem from 2.1.4 to 2.1.8 git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8128 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/servers/app/FontFamily.h | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/headers/private/servers/app/FontFamily.h b/headers/private/servers/app/FontFamily.h index 051f46cd3c..935c612962 100644 --- a/headers/private/servers/app/FontFamily.h +++ b/headers/private/servers/app/FontFamily.h @@ -119,9 +119,16 @@ public: uint16 CharMapCount(void) { return charmapcount; } const char *Name(void); FontFamily *Family(void) { return family; } - FT_Face GetFace(void); + + // TODO: Re-enable when I understand how the FT2 Cache system changed from + // 2.1.4 to 2.1.8 +// FT_Face GetFace(void); + const char *GetPath(void); - int16 ConvertToUnicode(uint16 c); + + // TODO: Re-enable when I understand how the FT2 Cache system changed from + // 2.1.4 to 2.1.8 +// int16 ConvertToUnicode(uint16 c); protected: friend class FontFamily; FontFamily *family;