diff plugins/notify.c @ 9303:fe931c791fc0

[gaim-migrate @ 10107] Fix a comiler warning, an accelerator key, and document something. Stu is all about keeping me on my toes. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 17 Jun 2004 01:34:58 +0000
parents b0b544e0f246
children 4a15962c344a
line wrap: on
line diff
--- a/plugins/notify.c	Thu Jun 17 01:20:17 2004 +0000
+++ b/plugins/notify.c	Thu Jun 17 01:34:58 2004 +0000
@@ -356,6 +356,7 @@
 	attach_signals(conv);
 }
 
+#if 0
 static void
 conv_switched(GaimConversation *old_conv, GaimConversation *new_conv)
 {
@@ -372,6 +373,7 @@
 			notify_win(gaimwin);
 	}
 }
+#endif
 
 static void
 deleting_conv(GaimConversation *conv)
@@ -387,6 +389,7 @@
 		notify_win(gaimwin);
 }
 
+#if 0
 static void
 conversation_drag_ended(GaimConversation *active_conv,
                         GaimConvWindow *old_gaimwin,
@@ -433,6 +436,7 @@
 			*/
 	}
 }
+#endif
 
 static void
 handle_string(GaimConvWindow *gaimwin)
@@ -734,12 +738,12 @@
 	                    GAIM_CALLBACK(conv_created), NULL);
 	gaim_signal_connect(conv_handle, "deleting-conversation", plugin,
 	                    GAIM_CALLBACK(deleting_conv), NULL);
-	/*
+#if 0
 	gaim_signal_connect(conv_handle, "conversation-switched", plugin,
 	                    GAIM_CALLBACK(conv_switched), NULL);
 	gaim_signal_connect(gtk_conv_handle, "conversation-drag-ended", plugin,
 	                    GAIM_CALLBACK(conversation_drag_ended), NULL);
-	 */
+#endif
 
 	while (convs) {
 		GaimConversation *conv = (GaimConversation *)convs->data;