f01bf78aca
Here are the highlights for this release of Thunderbird: * Smaller and Faster The Windows Installer is now only a 5.9MB download. Significant performance improvements on Windows, Linux and Mac OS X! * New Themes and Extension Manager Provides a convenient and secure way to manage and update the many add-ons that set Thunderbird apart from other e-mail clients. * Crash Analysis Tools (Talkback) Help us help you! Integration with Mozilla Talkback allows users to submit crash reports which makes it easier for us to find Thunderbird top crashes. * Other New Features... New user interface for viewing vCards. New Profile Manager which also supports running from a USB device. Color quoting for quoted message parts. Thunderbird now supports a user interface for creating multiple identities per e-mail account. This makes it easy to have several e-mail addresses which end up going into the same account. * Recently Fixed Bugs Fix for an occassional hang when reading IMAP mail over SSL. Our LDAP support works against older version 2 LDAP servers again in addition to version 3. Thunderbird can handle mailto urls that contain raw spaces in the subject. Other bug fixes too numerous to mention!
41 lines
2 KiB
Text
41 lines
2 KiB
Text
$NetBSD: patch-aj,v 1.2 2004/06/24 23:09:55 taya Exp $
|
|
|
|
diff -ru ../Orig/mozilla/gfx/src/freetype/nsFreeType.h ./gfx/src/freetype/nsFreeType.h
|
|
--- ../Orig/mozilla/gfx/src/freetype/nsFreeType.h 2004-04-17 06:31:42.000000000 +0900
|
|
+++ ./gfx/src/freetype/nsFreeType.h 2004-06-15 23:55:59.000000000 +0900
|
|
@@ -104,13 +104,13 @@
|
|
typedef FT_Error (*FT_New_Face_t)(FT_Library, const char*, FT_Long, FT_Face*);
|
|
typedef FT_Error (*FT_Set_Charmap_t)(FT_Face face, FT_CharMap charmap);
|
|
typedef FT_Error (*FTC_Image_Cache_Lookup_t)
|
|
- (FTC_Image_Cache, FTC_Image_Desc*, FT_UInt, FT_Glyph*);
|
|
-typedef FT_Error (*FTC_Manager_Lookup_Size_t)
|
|
- (FTC_Manager, FTC_Font, FT_Face*, FT_Size*);
|
|
+ (FTC_ImageCache, FTC_ImageType*, FT_UInt, FT_Glyph*);
|
|
+typedef FT_Error (*FTC_Manager_LookupFace_t)
|
|
+ (FTC_Manager, FTC_FaceID, FT_Face*);
|
|
typedef FT_Error (*FTC_Manager_Done_t)(FTC_Manager);
|
|
typedef FT_Error (*FTC_Manager_New_t)(FT_Library, FT_UInt, FT_UInt, FT_ULong,
|
|
FTC_Face_Requester, FT_Pointer, FTC_Manager*);
|
|
-typedef FT_Error (*FTC_Image_Cache_New_t)(FTC_Manager, FTC_Image_Cache*);
|
|
+typedef FT_Error (*FTC_Image_Cache_New_t)(FTC_Manager, FTC_ImageCache*);
|
|
// #ifdef MOZ_SVG
|
|
typedef FT_Error (*FT_Glyph_Transform_t)(FT_Glyph, FT_Matrix*, FT_Vector*);
|
|
typedef FT_Error (*FT_Get_Kerning_t)
|
|
@@ -165,7 +165,7 @@
|
|
FT_Outline_Decompose_t nsFT_Outline_Decompose;
|
|
FT_Set_Charmap_t nsFT_Set_Charmap;
|
|
FTC_Image_Cache_Lookup_t nsFTC_Image_Cache_Lookup;
|
|
- FTC_Manager_Lookup_Size_t nsFTC_Manager_Lookup_Size;
|
|
+ FTC_Manager_LookupFace_t nsFTC_Manager_LookupFace;
|
|
FTC_Manager_Done_t nsFTC_Manager_Done;
|
|
FTC_Manager_New_t nsFTC_Manager_New;
|
|
FTC_Image_Cache_New_t nsFTC_Image_Cache_New;
|
|
@@ -213,7 +213,7 @@
|
|
PRLibrary *mSharedLib;
|
|
FT_Library mFreeTypeLibrary;
|
|
FTC_Manager mFTCacheManager;
|
|
- FTC_Image_Cache mImageCache;
|
|
+ FTC_ImageCache mImageCache;
|
|
|
|
static nsHashtable *sFontFamilies;
|
|
static nsHashtable *sRange1CharSetNames;
|