summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2009-08-01 23:06:27 -0400
committerBehdad Esfahbod <behdad@behdad.org>2009-08-01 23:06:27 -0400
commit43514625e82ace469b2d2612bc8f890d192e7b78 (patch)
tree02db556193737eba81d0a0763e6735ab202eaf6d
parente8238d14ed452b3e402fa65a9d3997254c1570d7 (diff)
downloadpango-43514625e82ace469b2d2612bc8f890d192e7b78.tar.gz
[HB] Rename _duplicate to _copy
To be in line with cairo
-rw-r--r--pango/opentype/hb-font.c4
-rw-r--r--pango/opentype/hb-font.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/pango/opentype/hb-font.c b/pango/opentype/hb-font.c
index 078a3bc7..2397d77c 100644
--- a/pango/opentype/hb-font.c
+++ b/pango/opentype/hb-font.c
@@ -77,7 +77,7 @@ hb_font_callbacks_destroy (hb_font_callbacks_t *fcallbacks)
}
hb_font_callbacks_t *
-hb_font_callbacks_duplicate (hb_font_callbacks_t *other_fcallbacks)
+hb_font_callbacks_copy (hb_font_callbacks_t *other_fcallbacks)
{
hb_font_callbacks_t *fcallbacks;
@@ -141,7 +141,7 @@ hb_unicode_callbacks_destroy (hb_unicode_callbacks_t *ucallbacks)
}
hb_unicode_callbacks_t *
-hb_unicode_callbacks_duplicate (hb_unicode_callbacks_t *other_ucallbacks)
+hb_unicode_callbacks_copy (hb_unicode_callbacks_t *other_ucallbacks)
{
hb_unicode_callbacks_t *ucallbacks;
diff --git a/pango/opentype/hb-font.h b/pango/opentype/hb-font.h
index e563fa7e..deab22e6 100644
--- a/pango/opentype/hb-font.h
+++ b/pango/opentype/hb-font.h
@@ -58,7 +58,7 @@ void
hb_font_callbacks_destroy (hb_font_callbacks_t *fcallbacks);
hb_font_callbacks_t *
-hb_font_callbacks_duplicate (hb_font_callbacks_t *fcallbacks);
+hb_font_callbacks_copy (hb_font_callbacks_t *fcallbacks);
/*
@@ -98,7 +98,7 @@ void
hb_unicode_callbacks_destroy (hb_unicode_callbacks_t *ucallbacks);
hb_unicode_callbacks_t *
-hb_unicode_callbacks_duplicate (hb_unicode_callbacks_t *ucallbacks);
+hb_unicode_callbacks_copy (hb_unicode_callbacks_t *ucallbacks);
/*