From dfa811965133bc4d1696fa5a0166e17ed4142c98 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Mon, 28 Jan 2008 00:12:21 -0500 Subject: [PATCH] Rename hb_ot_layout_create() to hb_ot_layout_create_for_data() --- src/hb-ot-layout.cc | 4 ++-- src/hb-ot-layout.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/hb-ot-layout.cc b/src/hb-ot-layout.cc index ab3ac93..39328a9 100644 --- a/src/hb-ot-layout.cc +++ b/src/hb-ot-layout.cc @@ -53,8 +53,8 @@ struct _HB_OT_Layout { }; HB_OT_Layout * -hb_ot_layout_create (const char *font_data, - int face_index) +hb_ot_layout_create_for_data (const char *font_data, + int face_index) { HB_OT_Layout *layout = (HB_OT_Layout *) calloc (1, sizeof (HB_OT_Layout)); diff --git a/src/hb-ot-layout.h b/src/hb-ot-layout.h index fefe24f..ceb3647 100644 --- a/src/hb-ot-layout.h +++ b/src/hb-ot-layout.h @@ -38,8 +38,8 @@ HB_BEGIN_DECLS(); typedef struct _HB_OT_Layout HB_OT_Layout; HB_OT_Layout * -hb_ot_layout_create (const char *font_data, - int face_index); +hb_ot_layout_create_for_data (const char *font_data, + int face_index); void hb_ot_layout_destroy (HB_OT_Layout *layout); -- 2.7.4