summaryrefslogtreecommitdiff
path: root/pango/opentype
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2006-01-05 16:14:49 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2006-01-05 16:14:49 +0000
commit59e692ee5a119653d8743dcd7e066800a56cb9ff (patch)
treeb9a526d0d32a1654eb6b034cbecb6f26641a59c3 /pango/opentype
parent8462bd8cbfa15641147781889820b6e9b1ce1fb3 (diff)
downloadpango-59e692ee5a119653d8743dcd7e066800a56cb9ff.tar.gz
pango/Makefile.am, pango/fonts.c, pango/glyphstring.c,
2006-01-05 Behdad Esfahbod <behdad@gnome.org> * pango/Makefile.am, * pango/fonts.c, * pango/glyphstring.c, * pango/pango-attributes.c, * pango/pango-color.c, * pango/pango-impl-utils.h, * pango/pango-item.c, * pango/pango-layout.c, * pango/pango-tabs.c, * pango/pango-utils.c, * pango/pango-utils.h, * pango/pangoatsui-fontmap.c, * pango/pangocairo-font.c, * pango/pangocairo-fontmap.c, * pango/pangofc-fontmap.c, * pango/pangowin32-fontmap.c, * pango/pangox-fontmap.c, * pango/pangox.c, * pango/opentype/pango-ot-info.c, * pango/opentype/pango-ot-ruleset.c: Intern strings to avoid unnecessary strdups in the type system. (bug #325832, Matthias Clasen)
Diffstat (limited to 'pango/opentype')
-rw-r--r--pango/opentype/pango-ot-info.c3
-rw-r--r--pango/opentype/pango-ot-ruleset.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/pango/opentype/pango-ot-info.c b/pango/opentype/pango-ot-info.c
index 57ecd27e..87a2a4eb 100644
--- a/pango/opentype/pango-ot-info.c
+++ b/pango/opentype/pango-ot-info.c
@@ -20,6 +20,7 @@
*/
#include "pango-ot-private.h"
+#include "../pango-utils.h"
#include "ftglue.h"
#include FT_MODULE_H
@@ -57,7 +58,7 @@ pango_ot_info_get_type (void)
};
object_type = g_type_register_static (G_TYPE_OBJECT,
- "PangoOTInfo",
+ I_("PangoOTInfo"),
&object_info, 0);
}
diff --git a/pango/opentype/pango-ot-ruleset.c b/pango/opentype/pango-ot-ruleset.c
index 23126582..b61a28e0 100644
--- a/pango/opentype/pango-ot-ruleset.c
+++ b/pango/opentype/pango-ot-ruleset.c
@@ -21,6 +21,7 @@
#include <pango/pango-ot.h>
#include "pango-ot-private.h"
+#include "../pango-utils.h"
typedef struct _PangoOTRule PangoOTRule;
@@ -59,7 +60,7 @@ pango_ot_ruleset_get_type (void)
};
object_type = g_type_register_static (G_TYPE_OBJECT,
- "PangoOTRuleset",
+ I_("PangoOTRuleset"),
&object_info, 0);
}