summaryrefslogtreecommitdiff
path: root/render/font.c
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@comhem.se>2005-03-31 08:31:31 +0000
committerMikael Magnusson <mikachu@comhem.se>2005-03-31 08:31:31 +0000
commit7fc31cd0458228c85bf4ef80b96437bfebd0b7f5 (patch)
tree0312d67b55d9bcfe9bfef8d5c408dc272820fead /render/font.c
parent0e5feaa299524c79ccce4b65a13542fdc459c299 (diff)
fix a warning
Diffstat (limited to 'render/font.c')
-rw-r--r--render/font.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/render/font.c b/render/font.c
index 57d5aa9b..8b0d5dbc 100644
--- a/render/font.c
+++ b/render/font.c
@@ -79,7 +79,7 @@ static RrFont *openfont(const RrInstance *inst, gchar *fontstring)
FcResult res;
gint tint;
#ifdef USE_PANGO
- gchar *tmp_string = NULL;
+ guchar *tmp_string = NULL;
gint tmp_int;
#endif /* USE_PANGO */
@@ -100,16 +100,16 @@ static RrFont *openfont(const RrInstance *inst, gchar *fontstring)
out->pango_font_description = pango_font_description_new();
if (FcPatternGetString(match, "family", 0, &tmp_string) != FcResultTypeMismatch) {
- pango_font_description_set_family(out->pango_font_description, tmp_string);
+ pango_font_description_set_family(out->pango_font_description, (gchar *)tmp_string);
tmp_string = NULL;
}
if (FcPatternGetString(match, "style", 0, &tmp_string) != FcResultTypeMismatch) {
/* Bold ? */
- if (!strcasecmp("bold", tmp_string)) {
+ if (!strcasecmp("bold", (gchar *)tmp_string)) {
pango_font_description_set_weight(out->pango_font_description, PANGO_WEIGHT_BOLD);
}
/* Italic ? */
- else if (!strcasecmp("italic", tmp_string)) {
+ else if (!strcasecmp("italic", (gchar *)tmp_string)) {
pango_font_description_set_style(out->pango_font_description, PANGO_STYLE_ITALIC);
}
tmp_string = NULL;