Dn't use gint
This commit is contained in:
parent
11b0e20ba4
commit
3a7e137a68
|
@ -255,7 +255,7 @@ hb_glib_unicode_compose (hb_unicode_funcs_t *ufuncs HB_UNUSED,
|
||||||
|
|
||||||
gchar utf8[12];
|
gchar utf8[12];
|
||||||
gchar *normalized;
|
gchar *normalized;
|
||||||
gint len;
|
int len;
|
||||||
hb_bool_t ret;
|
hb_bool_t ret;
|
||||||
|
|
||||||
len = g_unichar_to_utf8 (a, utf8);
|
len = g_unichar_to_utf8 (a, utf8);
|
||||||
|
@ -292,7 +292,7 @@ hb_glib_unicode_decompose (hb_unicode_funcs_t *ufuncs HB_UNUSED,
|
||||||
|
|
||||||
gchar utf8[6];
|
gchar utf8[6];
|
||||||
gchar *normalized;
|
gchar *normalized;
|
||||||
gint len;
|
int len;
|
||||||
hb_bool_t ret;
|
hb_bool_t ret;
|
||||||
|
|
||||||
len = g_unichar_to_utf8 (ab, utf8);
|
len = g_unichar_to_utf8 (ab, utf8);
|
||||||
|
|
|
@ -278,7 +278,7 @@ hb_icu_unicode_decompose_compatibility (hb_unicode_funcs_t *ufuncs HB_UNUSED,
|
||||||
void *user_data HB_UNUSED)
|
void *user_data HB_UNUSED)
|
||||||
{
|
{
|
||||||
UChar utf16[2], normalized[2 * HB_UNICODE_MAX_DECOMPOSITION_LEN + 1];
|
UChar utf16[2], normalized[2 * HB_UNICODE_MAX_DECOMPOSITION_LEN + 1];
|
||||||
gint len;
|
int len;
|
||||||
int32_t utf32_len;
|
int32_t utf32_len;
|
||||||
hb_bool_t err;
|
hb_bool_t err;
|
||||||
UErrorCode icu_err;
|
UErrorCode icu_err;
|
||||||
|
|
Loading…
Reference in New Issue