forked from minhngoc25a/freetype2
* include/freetype/internal/ftserv.h (FT_FACE_FIND_GLOBAL_SERVICE)
[__cplusplus]: Fix typo.
This commit is contained in:
parent
9539d9b96f
commit
2c9ee60e04
|
@ -1,3 +1,8 @@
|
|||
2005-05-08 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* include/freetype/internal/ftserv.h (FT_FACE_FIND_GLOBAL_SERVICE)
|
||||
[__cplusplus]: Fix typo.
|
||||
|
||||
2005-05-07 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
Handle unsorted SFNT type 4 cmaps correctly (reported by Dirck
|
||||
|
|
|
@ -118,9 +118,9 @@ FT_BEGIN_HEADER
|
|||
|
||||
#define FT_FACE_FIND_GLOBAL_SERVICE( face, ptr, id ) \
|
||||
FT_BEGIN_STMNT \
|
||||
FT_Module module = FT_MODULE( FT_FACE( face )->driver ); \
|
||||
FT_Pointer _tmp_; \
|
||||
FT_Pointer _pptr_ = (FT_Pointer*)&(ptr); \
|
||||
FT_Module module = FT_MODULE( FT_FACE( face )->driver ); \
|
||||
FT_Pointer _tmp_; \
|
||||
FT_Pointer* _pptr_ = (FT_Pointer*)&(ptr); \
|
||||
\
|
||||
\
|
||||
_tmp_ = ft_module_get_service( module, FT_SERVICE_ID_ ## id ); \
|
||||
|
|
Loading…
Reference in New Issue