changeset 2788:3bf63f1882c8

[gaim-migrate @ 2801] forgot i left this in there. it didn't work but didn't hurt being there. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 21 Nov 2001 12:22:31 +0000
parents feea7103a235
children e8a2f3b92348
files src/conversation.c
diffstat 1 files changed, 0 insertions(+), 13 deletions(-) [+]
line wrap: on
line diff
--- a/src/conversation.c	Wed Nov 21 12:16:15 2001 +0000
+++ b/src/conversation.c	Wed Nov 21 12:22:31 2001 +0000
@@ -60,8 +60,6 @@
 #include "pixmaps/mrt.xpm"
 #include "pixmaps/download.xpm"
 
-static GtkTooltips *tabtips = NULL;
-
 static gchar *ispell_cmd[] = { "ispell", "-a", NULL };
 
 int state_lock = 0;
@@ -2158,7 +2156,6 @@
 	c->hasfg = 0;
 
 	if (im_options & OPT_IM_ONE_WINDOW) {
-		GtkWidget *page;
 		if (!all_convos) {
 			win = all_convos = c->window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
 			gtk_window_set_wmclass(GTK_WINDOW(win), "conversation", "Gaim");
@@ -2171,11 +2168,6 @@
 					   GTK_SIGNAL_FUNC(delete_all_convo), NULL);
 
 			convo_notebook = gtk_notebook_new();
-			if (!tabtips) {
-				tabtips = gtk_tooltips_new();
-				if (!(im_options & OPT_IM_ALIAS_TAB))
-					gtk_tooltips_disable(tabtips);
-			}
 			if (im_options & OPT_IM_SIDE_TAB) {
 				if (im_options & OPT_IM_BR_TAB) {
 					gtk_notebook_set_tab_pos(GTK_NOTEBOOK(convo_notebook),
@@ -2207,11 +2199,6 @@
 		/* this doesn't actually matter since we're resetting it once we're out of the if/else */
 		gtk_notebook_append_page(GTK_NOTEBOOK(convo_notebook), cont, gtk_label_new(c->name));
 		gtk_widget_show(cont);
-
-		page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(convo_notebook),
-						 g_list_index(conversations, c));
-		page = gtk_notebook_get_tab_label(GTK_NOTEBOOK(convo_notebook), page);
-		gtk_tooltips_set_tip(tabtips, page->parent, c->name, c->name);
 	} else {
 		cont = win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
 		c->window = win;