proto_dlg: fix no previous prototype for ‘heur_*_all_cb’ [-Wmissing-prototypes]

Change-Id: I330ec2cee965f8cc3128c4a7bf794e52581ac290
Reviewed-on: https://code.wireshark.org/review/10166
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
This commit is contained in:
Alexis La Goutte 2015-08-20 23:16:04 +02:00 committed by Michael Mann
parent d9395b7e34
commit a70f591582
1 changed files with 3 additions and 3 deletions

View File

@ -181,7 +181,7 @@ disable_all_cb(GtkWidget *button _U_, gpointer pl)
set_active_all((GtkWidget *)pl, FALSE);
}
void heur_toggle_all_cb(GtkWidget *button _U_, gpointer pl)
static void heur_toggle_all_cb(GtkWidget *button _U_, gpointer pl)
{
GSList *entry;
GtkListStore *s = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(pl)));
@ -212,12 +212,12 @@ heur_set_active_all(GtkWidget *w, gboolean new_state)
}
}
void heur_enable_all_cb(GtkWidget *button _U_, gpointer pl)
static void heur_enable_all_cb(GtkWidget *button _U_, gpointer pl)
{
heur_set_active_all((GtkWidget *)pl, TRUE);
}
void heur_disable_all_cb(GtkWidget *button _U_, gpointer pl)
static void heur_disable_all_cb(GtkWidget *button _U_, gpointer pl)
{
heur_set_active_all((GtkWidget *)pl, FALSE);
}