diff src/gtkimhtml.c @ 2048:3366311426df

[gaim-migrate @ 2058] little things committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sun, 17 Jun 2001 08:37:44 +0000
parents 199ba82faacb
children 391440022697
line wrap: on
line diff
--- a/src/gtkimhtml.c	Sun Jun 17 04:35:09 2001 +0000
+++ b/src/gtkimhtml.c	Sun Jun 17 08:37:44 2001 +0000
@@ -510,7 +510,7 @@
 	GList *chunks;
 	struct line_info *line;
 	gfloat x, y;
-	guint32 width, height;
+	gint width, height;
 
 	x = GTK_LAYOUT (imhtml)->hadjustment->value;
 	y = GTK_LAYOUT (imhtml)->vadjustment->value;
@@ -1591,7 +1591,7 @@
 
 		for (i = 0; choices [i]; i++) {
 			for (j = 0; fontnames [j]; j++)
-				if (!strcasecmp (fontnames [j], choices [i]))
+				if (!g_strcasecmp (fontnames [j], choices [i]))
 					break;
 			if (fontnames [j])
 				break;
@@ -1606,7 +1606,7 @@
 
 	if (!choice) {
 		for (i = 0; fontnames [i]; i++)
-			if (!strcasecmp (fontnames [i], DEFAULT_FONT_NAME))
+			if (!g_strcasecmp (fontnames [i], DEFAULT_FONT_NAME))
 				break;
 		if (fontnames [i])
 			choice = g_strdup (DEFAULT_FONT_NAME);