diff src/gtkutils.c @ 5794:5e93fc46d1af

[gaim-migrate @ 6219] Removed the __ prefix from static functions. I love them, but ANSI C knocked on my door and threatened to sue, saying they own all rights to them, so I was forced to remove them. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sat, 07 Jun 2003 07:57:24 +0000
parents 2c04c55222b7
children 059d95c67cda
line wrap: on
line diff
--- a/src/gtkutils.c	Sat Jun 07 06:41:31 2003 +0000
+++ b/src/gtkutils.c	Sat Jun 07 07:57:24 2003 +0000
@@ -526,7 +526,7 @@
 }
 
 static void
-__protocol_menu_cb(GtkWidget *optmenu, GCallback cb)
+protocol_menu_cb(GtkWidget *optmenu, GCallback cb)
 {
 	GtkWidget *menu;
 	GtkWidget *item;
@@ -639,7 +639,7 @@
 		gtk_option_menu_set_history(GTK_OPTION_MENU(optmenu), selected_index);
 
 	g_signal_connect(G_OBJECT(optmenu), "changed",
-					 G_CALLBACK(__protocol_menu_cb), cb);
+					 G_CALLBACK(protocol_menu_cb), cb);
 
 	g_object_unref(sg);