summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2002-06-12 15:13:08 +0000
committerOwen Taylor <otaylor@src.gnome.org>2002-06-12 15:13:08 +0000
commitdd7ec3c82fc0a73bb1b1b6a2f70efdd913f80f2b (patch)
treea196e50dc4f8652ee0c019f1afd5a4737a83e9fa /modules
parent3e1e86bb46d1672ee1801a2a6218e578fd42d6cc (diff)
downloadpango-dd7ec3c82fc0a73bb1b1b6a2f70efdd913f80f2b.tar.gz
Change @glyph2 parameter of arabic_*_recode() to be a gunichar* like
Wed Jun 12 11:08:35 2002 Owen Taylor <otaylor@redhat.com> * modules/arabic/langboxfont.[ch] modules/arabic/naqshfont.[ch]: Change @glyph2 parameter of arabic_*_recode() to be a gunichar* like @glyph. (Fixes warning with Solaris 8 compiler; #83256, David L. Cooper II)
Diffstat (limited to 'modules')
-rw-r--r--modules/arabic/langboxfont.c2
-rw-r--r--modules/arabic/langboxfont.h2
-rw-r--r--modules/arabic/naqshfont.c2
-rw-r--r--modules/arabic/naqshfont.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/modules/arabic/langboxfont.c b/modules/arabic/langboxfont.c
index 08043150..f439e82e 100644
--- a/modules/arabic/langboxfont.c
+++ b/modules/arabic/langboxfont.c
@@ -172,7 +172,7 @@ static fontentry charmap [] =
};
void
-arabic_lbox_recode(PangoXSubfont* subfont,gunichar* glyph,int* glyph2,
+arabic_lbox_recode(PangoXSubfont* subfont,gunichar* glyph,gunichar* glyph2,
PangoXSubfont* lboxfonts)
{
int letter=*glyph;
diff --git a/modules/arabic/langboxfont.h b/modules/arabic/langboxfont.h
index 6480c3ad..c2343938 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,gunichar* glyph,int* glyph2,
+arabic_lbox_recode(PangoXSubfont* subfont,gunichar* glyph,gunichar* glyph2,
PangoXSubfont* lboxfonts);
diff --git a/modules/arabic/naqshfont.c b/modules/arabic/naqshfont.c
index 859f66b2..a7462637 100644
--- a/modules/arabic/naqshfont.c
+++ b/modules/arabic/naqshfont.c
@@ -314,7 +314,7 @@ static fontentry charmap [] =
void
-urdu_naqsh_recode(PangoXSubfont* subfont,gunichar* glyph,int* glyph2,
+urdu_naqsh_recode(PangoXSubfont* subfont,gunichar* glyph,gunichar* glyph2,
PangoXSubfont* nqfont)
{
int letter=*glyph;
diff --git a/modules/arabic/naqshfont.h b/modules/arabic/naqshfont.h
index 915fda34..1d5a997c 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,gunichar* glyph,int* glyph2,
+urdu_naqsh_recode(PangoXSubfont* subfont,gunichar* glyph,gunichar* glyph2,
PangoXSubfont* nqfont);
#endif