aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2008-05-04 22:29:41 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2008-05-04 22:29:41 +0000
commitc3d348fc81f64ec5f7eb6bc82d6ed7fac9a647ae (patch)
tree2f281605ee6287ac02fe90205549b585146842a8 /gtk
parentade2234e9e394612454fe3cb90e66b1133adf29c (diff)
Corrected some unused arguments in case someone starts using them,
or just copy the code. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25225 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk')
-rw-r--r--gtk/main_packet_list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/main_packet_list.c b/gtk/main_packet_list.c
index f17e26832f..5a345ed1cd 100644
--- a/gtk/main_packet_list.c
+++ b/gtk/main_packet_list.c
@@ -257,7 +257,7 @@ packet_list_click_column_cb(GtkCList *clist, gint column, gpointer data)
/* What to do when a list item is selected/unselected */
static void
-packet_list_select_cb(GtkWidget *w _U_, gint row, gint col _U_, gpointer evt _U_) {
+packet_list_select_cb(GtkWidget *w _U_, gint row, gint col _U_, GdkEventButton *event _U_, gpointer evt _U_) {
frame_data *fdata;
/* Remove the hex display tabbed pages */
@@ -275,7 +275,7 @@ packet_list_select_cb(GtkWidget *w _U_, gint row, gint col _U_, gpointer evt _U_
}
static void
-packet_list_unselect_cb(GtkWidget *w _U_, gint row _U_, gint col _U_, gpointer evt _U_) {
+packet_list_unselect_cb(GtkWidget *w _U_, gint row _U_, gint col _U_, GdkEventButton *event _U_, gpointer evt _U_) {
cf_unselect_packet(&cfile);
}