summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2002-02-20 22:03:08 +0000
committerOwen Taylor <otaylor@src.gnome.org>2002-02-20 22:03:08 +0000
commitb1ff829f9f80b5b78bfb3dee29fdbee7af9ac218 (patch)
treebe19870ec7205299c546effacd9a2b24586eeef3 /modules
parent68244b6fd4360f53c5d2c57d52fbd16ccabdca47 (diff)
downloadpango-b1ff829f9f80b5b78bfb3dee29fdbee7af9ac218.tar.gz
Fix recode functions to take gunichar * since we pass that in. (#72059,
Wed Feb 20 16:58:24 2002 Owen Taylor <otaylor@redhat.com> * modules/arabic/{naqshfont.[ch],mulefont.[ch],langboxfont.[ch]}: Fix recode functions to take gunichar * since we pass that in. (#72059, reported by Miroslaw Dobrzanski-Neumann)
Diffstat (limited to 'modules')
-rw-r--r--modules/arabic/langboxfont.c2
-rw-r--r--modules/arabic/langboxfont.h2
-rw-r--r--modules/arabic/mulefont.c2
-rw-r--r--modules/arabic/mulefont.h2
-rw-r--r--modules/arabic/naqshfont.c2
-rw-r--r--modules/arabic/naqshfont.h2
6 files changed, 6 insertions, 6 deletions
diff --git a/modules/arabic/langboxfont.c b/modules/arabic/langboxfont.c
index 831b76e3..08043150 100644
--- a/modules/arabic/langboxfont.c
+++ b/modules/arabic/langboxfont.c
@@ -172,7 +172,7 @@ static fontentry charmap [] =
};
void
-arabic_lbox_recode(PangoXSubfont* subfont,int* glyph,int* glyph2,
+arabic_lbox_recode(PangoXSubfont* subfont,gunichar* glyph,int* glyph2,
PangoXSubfont* lboxfonts)
{
int letter=*glyph;
diff --git a/modules/arabic/langboxfont.h b/modules/arabic/langboxfont.h
index 75381e37..6480c3ad 100644
--- a/modules/arabic/langboxfont.h
+++ b/modules/arabic/langboxfont.h
@@ -20,7 +20,7 @@ arabic_lboxinit(PangoFont *font);
/* glyph2 is the next glyph in line; if there is none, put in NULL
*/
void
-arabic_lbox_recode(PangoXSubfont* subfont,int* glyph,int* glyph2,
+arabic_lbox_recode(PangoXSubfont* subfont,gunichar* glyph,int* glyph2,
PangoXSubfont* lboxfonts);
diff --git a/modules/arabic/mulefont.c b/modules/arabic/mulefont.c
index 2843e73c..f283ad22 100644
--- a/modules/arabic/mulefont.c
+++ b/modules/arabic/mulefont.c
@@ -214,7 +214,7 @@ static fontentry charmap [] =
};
void
-arabic_mule_recode(PangoXSubfont* subfont,int* glyph,PangoXSubfont* mulefonts)
+arabic_mule_recode(PangoXSubfont* subfont,gunichar* glyph,PangoXSubfont* mulefonts)
{
int letter=*glyph;
if ((letter >= 0x660)&&(letter <= 0x669)) /* indic numeral */
diff --git a/modules/arabic/mulefont.h b/modules/arabic/mulefont.h
index 34c6507b..e93d8118 100644
--- a/modules/arabic/mulefont.h
+++ b/modules/arabic/mulefont.h
@@ -18,6 +18,6 @@ ArabicFontInfo*
arabic_muleinit(PangoFont *font);
void
-arabic_mule_recode(PangoXSubfont* subfont,int* glyph,PangoXSubfont* mulefonts);
+arabic_mule_recode(PangoXSubfont* subfont,gunichar* glyph,PangoXSubfont* mulefonts);
#endif
diff --git a/modules/arabic/naqshfont.c b/modules/arabic/naqshfont.c
index 3b1f70d6..859f66b2 100644
--- a/modules/arabic/naqshfont.c
+++ b/modules/arabic/naqshfont.c
@@ -314,7 +314,7 @@ static fontentry charmap [] =
void
-urdu_naqsh_recode(PangoXSubfont* subfont,int* glyph,int* glyph2,
+urdu_naqsh_recode(PangoXSubfont* subfont,gunichar* glyph,int* glyph2,
PangoXSubfont* nqfont)
{
int letter=*glyph;
diff --git a/modules/arabic/naqshfont.h b/modules/arabic/naqshfont.h
index 4d45d57b..915fda34 100644
--- a/modules/arabic/naqshfont.h
+++ b/modules/arabic/naqshfont.h
@@ -20,7 +20,7 @@ urdu_naqshinit(PangoFont *font);
/* glyph2 is the next glyph in line; if there is none, put in NULL
*/
void
-urdu_naqsh_recode(PangoXSubfont* subfont,int* glyph,int* glyph2,
+urdu_naqsh_recode(PangoXSubfont* subfont,gunichar* glyph,int* glyph2,
PangoXSubfont* nqfont);
#endif