aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/plugins_dlg.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-03-05 11:56:00 +0000
committerGuy Harris <guy@alum.mit.edu>2002-03-05 11:56:00 +0000
commit5fe414c55515b167139d6f3210ecc295e8ee4b80 (patch)
tree83b4a4b9bb6feec12b33a20284ca42956059c250 /gtk/plugins_dlg.c
parentf2e1c78ba1308e436469e26b47fced9c8d5b5f56 (diff)
From Joerg Mayer: use _U_ to flag unused arguments.
svn path=/trunk/; revision=4878
Diffstat (limited to 'gtk/plugins_dlg.c')
-rw-r--r--gtk/plugins_dlg.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/plugins_dlg.c b/gtk/plugins_dlg.c
index 41d861dd29..ad5e58c05e 100644
--- a/gtk/plugins_dlg.c
+++ b/gtk/plugins_dlg.c
@@ -1,7 +1,7 @@
/* plugins_dlg.c
* Dialog boxes for plugins
*
- * $Id: plugins_dlg.c,v 1.23 2002/01/21 07:37:42 guy Exp $
+ * $Id: plugins_dlg.c,v 1.24 2002/03/05 11:55:59 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -46,7 +46,7 @@ static void plugins_close_cb(GtkWidget *, gpointer);
static void plugins_scan(GtkWidget *);
void
-tools_plugins_cmd_cb(GtkWidget *widget, gpointer data)
+tools_plugins_cmd_cb(GtkWidget *widget _U_, gpointer data _U_)
{
GtkWidget *plugins_window;
GtkWidget *main_vbox;
@@ -134,7 +134,7 @@ plugins_scan(GtkWidget *clist)
}
static void
-plugins_close_cb(GtkWidget *close_bt, gpointer parent_w)
+plugins_close_cb(GtkWidget *close_bt _U_, gpointer parent_w)
{
gtk_grab_remove(GTK_WIDGET(parent_w));
gtk_widget_destroy(GTK_WIDGET(parent_w));