aboutsummaryrefslogtreecommitdiffstats
path: root/column.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>1999-06-19 03:14:32 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>1999-06-19 03:14:32 +0000
commitd9a59a909d28a18964a692bcfac82a67b4e19268 (patch)
treec5135b9685b259bb0a3c26730cf3c9a8533125d5 /column.h
parent50e7cba1d95dabd339e8fa4b10053f4ca7537f84 (diff)
Use "gtk_toggle_button_set_state()" rather than
"gtk_toggle_button_set_active()" to set the state of radio buttions; "gtk_toggle_button_set_active()" doesn't exist in GTK+ 1.0[.x], and "gtk_toggle_button_set_state()" is an alias for it in GTK+ 1.2[.x]. Compute the column widths in the summary display based on the longest string in the column; recompute it whenever we update the columns. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@319 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'column.h')
-rw-r--r--column.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/column.h b/column.h
index 209b688c4e..314b93ca25 100644
--- a/column.h
+++ b/column.h
@@ -1,7 +1,7 @@
/* column.h
* Definitions for column handling routines
*
- * $Id: column.h,v 1.1 1998/11/17 04:28:41 gerald Exp $
+ * $Id: column.h,v 1.2 1999/06/19 03:14:31 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -35,7 +35,6 @@ gint get_column_format(gint);
gchar *get_column_title(gint);
gchar *col_format_to_pref_str();
void get_column_format_matches(gboolean *, gint);
-gint get_column_width(gint format, GdkFont *font);
GtkWidget *column_prefs_show();
void column_prefs_ok(GtkWidget *);
void column_prefs_save(GtkWidget *);