diff src/buddy.c @ 1002:1d8f05ea6bdf

[gaim-migrate @ 1012] i don't even remember what happened. all good things, i hope committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 18 Oct 2000 02:38:18 +0000
parents 91b7377e7b45
children 38452403563b
line wrap: on
line diff
--- a/src/buddy.c	Mon Oct 16 20:14:18 2000 +0000
+++ b/src/buddy.c	Wed Oct 18 02:38:18 2000 +0000
@@ -394,6 +394,9 @@
                         c = new_conversation(b->name);
                 }
 	} else if (event->type == GDK_BUTTON_PRESS && event->button == 3) {
+		/* FIXME: first, create a menu of each signed on name. then for each of those,
+		 * make a submenu based on which protocol is being used. this will help clarify
+		 * a lot of the UI and connection issues */
                 GtkWidget *menu, *button;
 		/* We're gonna make us a menu right here */
 
@@ -423,12 +426,6 @@
 		gtk_menu_append(GTK_MENU(menu), button);
 		gtk_widget_show(button);
 
-		button = gtk_menu_item_new_with_label(_("Direct IM"));
-		gtk_signal_connect(GTK_OBJECT(button), "activate",
-				   GTK_SIGNAL_FUNC(serv_do_imimage), b->name);
-		gtk_menu_append(GTK_MENU(menu), button);
-		gtk_widget_show(button);
-
 		button = gtk_menu_item_new_with_label(_("Away Msg"));
 		gtk_signal_connect(GTK_OBJECT(button), "activate",
 				   GTK_SIGNAL_FUNC(pressed_away_msg), b);