aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/h225_counter.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-12-04 00:45:39 +0000
committerGuy Harris <guy@alum.mit.edu>2003-12-04 00:45:39 +0000
commit64bc566ea87ea13d92bf505ed17245e0d18eae69 (patch)
tree6ce663d9714ee34c06a81a25dbc833864b67ea98 /gtk/h225_counter.c
parent78191a09b5cd5840a8cc94879094f63b808ba1e8 (diff)
In GTK+ 2.x, "gtk_entry_get_text()" returns a "const gchar *"; assign
its value to pointer-to-const variables. svn path=/trunk/; revision=9161
Diffstat (limited to 'gtk/h225_counter.c')
-rw-r--r--gtk/h225_counter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/h225_counter.c b/gtk/h225_counter.c
index 18fd521746..cf3d29894a 100644
--- a/gtk/h225_counter.c
+++ b/gtk/h225_counter.c
@@ -2,7 +2,7 @@
* h225 message counter for ethereal
* Copyright 2003 Lars Roland
*
- * $Id: h225_counter.c,v 1.1 2003/10/28 00:31:17 guy Exp $
+ * $Id: h225_counter.c,v 1.2 2003/12/04 00:45:38 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -777,7 +777,7 @@ h225counter_start_button_clicked(GtkWidget *item _U_, gpointer data _U_)
static void
gtk_h225counter_cb(GtkWidget *w _U_, gpointer d _U_)
{
- char *filter;
+ const char *filter;
char *title;
GtkWidget *dlg_box;
GtkWidget *filter_box, *filter_label;