[HB] Minor cleanup
authorBehdad Esfahbod <behdad@behdad.org>
Wed, 5 Aug 2009 00:27:05 +0000 (20:27 -0400)
committerBehdad Esfahbod <behdad@behdad.org>
Mon, 2 Nov 2009 19:40:29 +0000 (14:40 -0500)
src/hb-ot-layout-gdef-private.hh
src/hb-ot-layout-gpos-private.hh
src/hb-ot-layout-gsub-private.hh
src/hb-ot-layout-gsubgpos-private.hh

index 2a96a64..ba34e3a 100644 (file)
@@ -300,7 +300,7 @@ ASSERT_SIZE (MarkGlyphSets, 2);
 
 struct GDEF
 {
-  static const hb_tag_t Tag            = HB_TAG ('G','D','E','F');
+  static const hb_tag_t Tag    = HB_OT_TAG_GDEF;
 
   enum {
     UnclassifiedGlyph  = 0,
index c245e0f..4aaefeb 100644 (file)
@@ -1487,7 +1487,7 @@ ASSERT_SIZE (PosLookupList, 2);
 
 struct GPOS : GSUBGPOS
 {
-  static const hb_tag_t Tag            = HB_TAG ('G','P','O','S');
+  static const hb_tag_t Tag    = HB_OT_TAG_GPOS;
 
   static inline const GPOS& get_for_data (const char *data)
   { return (const GPOS&) GSUBGPOS::get_for_data (data); }
index 535d636..db608fd 100644 (file)
@@ -823,7 +823,7 @@ ASSERT_SIZE (SubstLookupList, 2);
 
 struct GSUB : GSUBGPOS
 {
-  static const hb_tag_t Tag            = HB_TAG ('G','S','U','B');
+  static const hb_tag_t Tag    = HB_OT_TAG_GSUB;
 
   static inline const GSUB& get_for_data (const char *data)
   { return (const GSUB&) GSUBGPOS::get_for_data (data); }
index 0682691..2f95674 100644 (file)
@@ -835,8 +835,8 @@ ASSERT_SIZE (Extension, 2);
 
 struct GSUBGPOS
 {
-  static const hb_tag_t GSUBTag                = HB_TAG ('G','S','U','B');
-  static const hb_tag_t GPOSTag                = HB_TAG ('G','P','O','S');
+  static const hb_tag_t GSUBTag        = HB_OT_TAG_GSUB;
+  static const hb_tag_t GPOSTag        = HB_OT_TAG_GPOS;
 
   STATIC_DEFINE_GET_FOR_DATA_CHECK_MAJOR_VERSION (GSUBGPOS, 1, 1);