Corrected some unused arguments in case someone starts using them,

or just copy the code.

svn path=/trunk/; revision=25225
This commit is contained in:
Stig Bjørlykke 2008-05-04 22:29:41 +00:00
parent c7bbc2a33a
commit 32a4a97c92
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}