aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/tcp_graph.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-04-29 08:20:18 +0000
committerGuy Harris <guy@alum.mit.edu>2002-04-29 08:20:18 +0000
commit9a80f0a5212d8ad6704cebefbaf091a473ab04a4 (patch)
tree53112d7b0bd3805cf4f0a1184361d95493a61129 /gtk/tcp_graph.c
parent30f02bc99cb3a578758c76cc6cb0c8278273e6be (diff)
Removal (or, at least, #ifdeffing out) of unused variables and
functions, from David Frascone. svn path=/trunk/; revision=5288
Diffstat (limited to 'gtk/tcp_graph.c')
-rw-r--r--gtk/tcp_graph.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/gtk/tcp_graph.c b/gtk/tcp_graph.c
index 33f56bb610..ffb201e4c2 100644
--- a/gtk/tcp_graph.c
+++ b/gtk/tcp_graph.c
@@ -3,7 +3,7 @@
* By Pavel Mores <pvl@uh.cz>
* Win32 port: rwh@unifiedtech.com
*
- * $Id: tcp_graph.c,v 1.17 2002/03/05 12:03:27 guy Exp $
+ * $Id: tcp_graph.c,v 1.18 2002/04/29 08:20:18 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -388,8 +388,10 @@ int debugging = 0;
/*int debugging = DBS_TPUT_ELMTS;*/
static void create_gui (struct graph * );
+#if 0
static void create_text_widget (struct graph * );
static void display_text (struct graph * );
+#endif
static void create_drawing_area (struct graph * );
static void control_panel_create (struct graph * );
static GtkWidget *control_panel_create_zoom_group (struct graph * );
@@ -573,6 +575,7 @@ static void create_gui (struct graph *g)
create_drawing_area(g);
}
+#if 0
static void create_text_widget (struct graph *g)
{
GtkWidget *streamwindow, *txt_scrollw, *box;
@@ -601,7 +604,6 @@ static void create_text_widget (struct graph *g)
gtk_widget_show (g->text);
gtk_widget_show (streamwindow);
}
-
static void display_text (struct graph *g)
{
char *line[256];
@@ -663,6 +665,7 @@ static void display_text (struct graph *g)
}
gtk_text_thaw (GTK_TEXT (g->text));
}
+#endif
static void create_drawing_area (struct graph *g)
{