diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-09-10 22:23:58 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-09-10 22:23:58 +0000 |
commit | 3e1a53241351c35b52450c2a98c7f7a222f8d653 (patch) | |
tree | 1ed8d38556a272ae4d44b7cba817b907fc2a5aa3 /print.h | |
parent | 7704cdd1490ee9017ac78c03ca9728abdd2c20f9 (diff) | |
download | wireshark-3e1a53241351c35b52450c2a98c7f7a222f8d653.tar.gz wireshark-3e1a53241351c35b52450c2a98c7f7a222f8d653.tar.bz2 wireshark-3e1a53241351c35b52450c2a98c7f7a222f8d653.zip |
When saving packets, we have a "Save only marked packets" option; label
the option to print only marked packets similarly, rather than as
"Suppress unmarked packets" (for consistency, and because the latter
isn't unlike a double negative).
svn path=/trunk/; revision=8451
Diffstat (limited to 'print.h')
-rw-r--r-- | print.h | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -1,7 +1,7 @@ /* print.h * Definitions for printing packet analysis trees. * - * $Id: print.h,v 1.29 2002/08/28 21:00:40 jmayer Exp $ + * $Id: print.h,v 1.30 2003/09/10 22:23:58 guy Exp $ * * Gilbert Ramirez <gram@alumni.rice.edu> * @@ -43,11 +43,9 @@ typedef struct { FALSE if we should print only if not dissected. */ gboolean expand_all; /* TRUE if we should expand all levels; FALSE if we should expand as displayed. */ - gboolean suppress_unmarked; /* TRUE if we should suppress unmarked - frames FALSE if we should allow - both marked and unmarked frames to be - printed. - */ + gboolean print_only_marked; /* TRUE if we should print only marked + frames; FALSE if we should print + all frames. */ } print_args_t; /* Functions in print.h */ |