summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2002-06-12 15:13:55 +0000
committerOwen Taylor <otaylor@src.gnome.org>2002-06-12 15:13:55 +0000
commit8ef8754d89bc3f44b74c30d9e5c65a6e76e322ea (patch)
tree014d0ae96b861778426d89fac356f591ba9b3e16 /modules
parentc9eb7903ba31539bed735fa4bc60b39dfd72c933 (diff)
downloadpango-8ef8754d89bc3f44b74c30d9e5c65a6e76e322ea.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