diff options
author | Sven Neumann <sven@gimp.org> | 2001-12-14 00:43:04 +0000 |
---|---|---|
committer | Sven Neumann <neo@src.gnome.org> | 2001-12-14 00:43:04 +0000 |
commit | 98786bf21ba68bfe496887ea31573498fe996b68 (patch) | |
tree | 210c39278324cf47557c85b6a0fdd274ca48dcf7 /modules | |
parent | 384eaf43f11dcee0d7b10af5663bb5f8822634cf (diff) | |
download | pango-98786bf21ba68bfe496887ea31573498fe996b68.tar.gz |
use (PangoLanguage *) instead of (const gchar *) to please the compiler.
2001-12-14 Sven Neumann <sven@gimp.org>
* modules/hebrew/hebrew-x.c (hebrew_engine_get_coverage): use
(PangoLanguage *) instead of (const gchar *) to please the compiler.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/hebrew/hebrew-x.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/hebrew/hebrew-x.c b/modules/hebrew/hebrew-x.c index 8d47df13..8f7697e4 100644 --- a/modules/hebrew/hebrew-x.c +++ b/modules/hebrew/hebrew-x.c @@ -720,8 +720,8 @@ hebrew_engine_shape (PangoFont *font, } static PangoCoverage * -hebrew_engine_get_coverage (PangoFont *font, - const char *lang) +hebrew_engine_get_coverage (PangoFont *font, + PangoLanguage *lang) { PangoCoverage *result = pango_coverage_new (); |