aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/enttec
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2008-05-05 17:19:51 +0000
committerAnders Broman <anders.broman@ericsson.com>2008-05-05 17:19:51 +0000
commit57ebbbbb2c72ee51acee3c8d0300212217c460a4 (patch)
tree8200135e270767dd851ba71c42a911928335cbf5 /plugins/enttec
parente9a197ee94f77cb156681486a1c0a1edddd9acc0 (diff)
Dount use proto_tree_add_item_hidden().
svn path=/trunk/; revision=25233
Diffstat (limited to 'plugins/enttec')
-rw-r--r--plugins/enttec/packet-enttec.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/enttec/packet-enttec.c b/plugins/enttec/packet-enttec.c
index d8b3dc040f..0db1ae1d99 100644
--- a/plugins/enttec/packet-enttec.c
+++ b/plugins/enttec/packet-enttec.c
@@ -208,6 +208,7 @@ dissect_enttec_dmx_data(tvbuff_t *tvb, guint offset, proto_tree *tree)
static char string[255];
proto_tree *hi,*si;
+ proto_item *item;
guint16 length,r,c,row_count;
guint8 v,type,count;
guint16 ci,ui,i,start_offset,end_offset;
@@ -315,8 +316,9 @@ dissect_enttec_dmx_data(tvbuff_t *tvb, guint offset, proto_tree *tree)
ptr = string;
}
- proto_tree_add_item_hidden(si, hf_enttec_dmx_data_data_filter, tvb,
+ item = proto_tree_add_item(si, hf_enttec_dmx_data_data_filter, tvb,
offset, length, FALSE );
+ PROTO_ITEM_SET_HIDDEN(item);
offset += length;
} else if (type == ENTTEC_DATA_TYPE_CHAN_VAL) {