diff options
Diffstat (limited to 'chat/xchat/patches/patch-ae')
-rw-r--r-- | chat/xchat/patches/patch-ae | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/chat/xchat/patches/patch-ae b/chat/xchat/patches/patch-ae deleted file mode 100644 index a9dfda25db8..00000000000 --- a/chat/xchat/patches/patch-ae +++ /dev/null @@ -1,24 +0,0 @@ -$NetBSD: patch-ae,v 1.5 2010/06/02 18:24:47 tnn Exp $ - ---- src/fe-gtk/maingui.c.orig 2008-04-01 08:53:41.000000000 +0000 -+++ src/fe-gtk/maingui.c -@@ -599,7 +599,7 @@ mg_show_generic_tab (GtkWidget *box) - int num; - GtkWidget *f = NULL; - -- if (current_sess && GTK_WIDGET_HAS_FOCUS (current_sess->gui->input_box)) -+ if (current_sess && gtk_widget_has_focus(current_sess->gui->input_box)) - f = current_sess->gui->input_box; - - num = gtk_notebook_page_num (GTK_NOTEBOOK (mg_gui->note_book), box); -@@ -809,8 +809,8 @@ mg_set_topic_tip (session *sess) - static void - mg_hide_empty_pane (GtkPaned *pane) - { -- if ((pane->child1 == NULL || !GTK_WIDGET_VISIBLE (pane->child1)) && -- (pane->child2 == NULL || !GTK_WIDGET_VISIBLE (pane->child2))) -+ if ((pane->child1 == NULL || !gtk_widget_get_visible(pane->child1)) && -+ (pane->child2 == NULL || !gtk_widget_get_visible(pane->child2))) - { - gtk_widget_hide (GTK_WIDGET (pane)); - return; |