diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-01-04 08:56:11 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-01-04 08:56:11 +0000 |
commit | 7494218b47a842dfe003d7a6901bb1549a8c7f44 (patch) | |
tree | 9142d0b0d795c4f8cb030620d9c6d276ab648083 /epan/proto.h | |
parent | abbebafa78985e496c326f4ceabc6fde82eb8c95 (diff) | |
download | wireshark-7494218b47a842dfe003d7a6901bb1549a8c7f44.tar.gz wireshark-7494218b47a842dfe003d7a6901bb1549a8c7f44.tar.bz2 wireshark-7494218b47a842dfe003d7a6901bb1549a8c7f44.zip |
"proto_tree_is_visible" no longer exists as a global variable, so remove
its declaration.
svn path=/trunk/; revision=4477
Diffstat (limited to 'epan/proto.h')
-rw-r--r-- | epan/proto.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/epan/proto.h b/epan/proto.h index 6d86378ff8..439bea202b 100644 --- a/epan/proto.h +++ b/epan/proto.h @@ -1,7 +1,7 @@ /* proto.h * Definitions for protocol display * - * $Id: proto.h,v 1.25 2001/12/18 19:09:04 gram Exp $ + * $Id: proto.h,v 1.26 2002/01/04 08:56:11 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -554,12 +554,6 @@ extern GPtrArray* proto_get_finfo_ptr_array(proto_tree *tree, int hfindex); /* Dumps a glossary of the protocol and field registrations to STDOUT */ extern void proto_registrar_dump(void); -/* Is the parsing being done for a visible proto_tree or an invisible one? - * By setting this correctly, the proto_tree creation is sped up by not - * having to call vsnprintf and copy strings around. - */ -extern gboolean proto_tree_is_visible; - /* Points to the first element of an array of Booleans, indexed by a subtree item type; that array element is TRUE if subtrees of an item of that type are to be expanded. |