diff src/gtknotify.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 9eb5b13fd412
children 059d95c67cda
line wrap: on
line diff
--- a/src/gtknotify.c	Sat Jun 07 06:41:31 2003 +0000
+++ b/src/gtknotify.c	Sat Jun 07 07:57:24 2003 +0000
@@ -43,7 +43,7 @@
 									void *user_data);
 
 static void
-__email_response_cb(GtkDialog *dialog, gint id, GaimNotifyMailData *data)
+email_response_cb(GtkDialog *dialog, gint id, GaimNotifyMailData *data)
 {
 	if (id == 0)
 		open_url(NULL, data->url);
@@ -161,7 +161,7 @@
 		gtk_dialog_add_button(GTK_DIALOG(dialog), GAIM_STOCK_OPEN_MAIL, 0);
 
 	g_signal_connect(G_OBJECT(dialog), "response",
-					 G_CALLBACK(__email_response_cb), data);
+					 G_CALLBACK(email_response_cb), data);
 
 	/* Setup the dialog */
 	gtk_container_set_border_width(GTK_CONTAINER(dialog), 6);