aboutsummaryrefslogtreecommitdiffstats
path: root/column.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>1999-07-13 03:08:06 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>1999-07-13 03:08:06 +0000
commit57e49071ef1da141b01312163bd9afeaddcb4c2f (patch)
tree7fb6f84d48629d0d313933df47676f574f35c2ed /column.c
parent601c52f0fb7d36599045e90a6baafe918997f644 (diff)
Since ethereal is now dependent on GTK+-1.2.x (because of proto_tree and
display filter code, which uses features in GLIB-1.2.x), I removed the vestigial code supporting old 1.0.x and 1.1.x GTK+ versions. svn path=/trunk/; revision=360
Diffstat (limited to 'column.c')
-rw-r--r--column.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/column.c b/column.c
index e8f43240a0..87b6476c9e 100644
--- a/column.c
+++ b/column.c
@@ -1,7 +1,7 @@
/* column.c
* Routines for handling column preferences
*
- * $Id: column.c,v 1.15 1999/07/13 02:52:46 gram Exp $
+ * $Id: column.c,v 1.16 1999/07/13 03:08:03 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -384,11 +384,7 @@ column_prefs_show() {
gtk_list_set_selection_mode(GTK_LIST(column_l), GTK_SELECTION_SINGLE);
gtk_signal_connect(GTK_OBJECT(column_l), "selection_changed",
GTK_SIGNAL_FUNC(column_sel_list_cb), main_vb);
-#ifdef GTK_HAVE_FEATURES_1_1_4
gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(column_sc), column_l);
-#else
- gtk_container_add(GTK_CONTAINER(column_sc), column_l);
-#endif
gtk_widget_show(column_l);
clp = g_list_first(prefs.col_list);