diff options
author | Guy Harris <guy@alum.mit.edu> | 1999-07-23 08:29:24 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 1999-07-23 08:29:24 +0000 |
commit | 356a07b384d1b3ff58ccf8a5f01b76f879055baf (patch) | |
tree | 5546665a4b2e1fa09c5d4a74623c5c860cf70b03 /column.c | |
parent | de459d1426cc27341dcf681cf5b35c27c9a5732a (diff) | |
download | wireshark-356a07b384d1b3ff58ccf8a5f01b76f879055baf.tar.gz wireshark-356a07b384d1b3ff58ccf8a5f01b76f879055baf.tar.bz2 wireshark-356a07b384d1b3ff58ccf8a5f01b76f879055baf.zip |
Add a "File/Print" menu item, which prints *all* the packets in the
capture to a file or printer. This should eventually get the ability to
print either all the packets or only the packets selected by the display
filter, and possibly also the ability to print only packets M through N.
Get rid of "cur" member of "capture_file" structure; nobody used it.
There's no need to pass a pointer to a "dialog_button" variable to
"simple_dialog()" for the error boxes displayed if a file copy or move
fails; that dialog box is just a message box and has only an "OK"
button.
Put the declaration of "prefs" into "prefs.h".
svn path=/trunk/; revision=378
Diffstat (limited to 'column.c')
-rw-r--r-- | column.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1,7 +1,7 @@ /* column.c * Routines for handling column preferences * - * $Id: column.c,v 1.18 1999/07/22 21:14:13 guy Exp $ + * $Id: column.c,v 1.19 1999/07/23 08:29:23 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -48,8 +48,6 @@ #include "column.h" #include "packet.h" -extern e_prefs prefs; - static GtkWidget *column_l, *chg_bt, *del_bt, *title_te, *fmt_m, *up_bt, *dn_bt; static gint cur_fmt; |