diff src/gtkrequest.c @ 11780:8cb75ba77f9d

[gaim-migrate @ 14071] I've been time travelling, I bumped into Gtk 2.0 on my way. Gaim now works with Gtk 2.0 again. Next stop: gtk 1.2 ... erm. what? ... NO! PS. resiak: I won! committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Mon, 24 Oct 2005 00:31:41 +0000
parents 4db38b374d3f
children bfbb1798535e
line wrap: on
line diff
--- a/src/gtkrequest.c	Mon Oct 24 00:18:37 2005 +0000
+++ b/src/gtkrequest.c	Mon Oct 24 00:31:41 2005 +0000
@@ -26,6 +26,7 @@
 #include "gtkgaim.h"
 
 #include "prefs.h"
+#include "util.h"
 
 #include "gtkimhtml.h"
 #include "gtkimhtmltoolbar.h"
@@ -741,7 +742,7 @@
 
 	gtk_tree_model_get_value(model, iter, 2, &val1);
 	tmp = g_value_get_string(&val1);
-	if (tmp != NULL && g_str_has_prefix(tmp, key))
+	if (tmp != NULL && gaim_str_has_prefix(tmp, key))
 	{
 		g_value_unset(&val1);
 		return TRUE;
@@ -750,7 +751,7 @@
 
 	gtk_tree_model_get_value(model, iter, 3, &val2);
 	tmp = g_value_get_string(&val2);
-	if (tmp != NULL && g_str_has_prefix(tmp, key))
+	if (tmp != NULL && gaim_str_has_prefix(tmp, key))
 	{
 		g_value_unset(&val2);
 		return TRUE;