aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/http_stat.c
diff options
context:
space:
mode:
authorOlivier Abad <oabad@noos.fr>2003-12-16 18:43:35 +0000
committerOlivier Abad <oabad@noos.fr>2003-12-16 18:43:35 +0000
commitabb4aec1fe46e0a8e9ef34b1bc150c693d7c1e43 (patch)
treedd4d79b69fcb1a2a5ae65ba12bcfefd3ba4946de /gtk/http_stat.c
parente411cd98b8b09f2ee953bd6a692bf09e313064ad (diff)
Use gtk compatibility macros (from compat_macros.h) instead of some gtk+
v1.2 functions which are deprecated in gtk+ v2. Update OBJECT_SET_DATA macros to cast "data" to (gpointer). svn path=/trunk/; revision=9296
Diffstat (limited to 'gtk/http_stat.c')
-rw-r--r--gtk/http_stat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/http_stat.c b/gtk/http_stat.c
index a0047390c9..411021b7d9 100644
--- a/gtk/http_stat.c
+++ b/gtk/http_stat.c
@@ -1,7 +1,7 @@
/* http_stat.c
* http_stat 2003 Jean-Michel FAYARD
*
- * $Id: http_stat.c,v 1.9 2003/12/13 22:23:18 guy Exp $
+ * $Id: http_stat.c,v 1.10 2003/12/16 18:43:34 oabad Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -559,7 +559,7 @@ gtk_httpstat_cb(GtkWidget *w _U_, gpointer d _U_)
/* Filter entry */
filter_entry=gtk_entry_new();
- gtk_widget_set_usize(filter_entry, 300, -2);
+ WIDGET_SET_SIZE(filter_entry, 300, -2);
gtk_box_pack_start(GTK_BOX(filter_box), filter_entry, TRUE, TRUE, 0);
gtk_widget_show(filter_entry);