Qt (main_window) fix no previous prototype for '...' [-Wmissing-prototypes]

Change-Id: I43901d37817f9b79d508336253e766d740939e70
Reviewed-on: https://code.wireshark.org/review/10003
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Alexis La Goutte 2015-08-12 20:58:14 +02:00 committed by Anders Broman
parent 2449c7ad77
commit db2692c44c
1 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ void pipe_input_set_handler(gint source, gpointer user_data, ws_process_id *chil
gbl_cur_main_window_->setPipeInputHandler(source, user_data, child_process, input_cb);
}
void plugin_if_mainwindow_apply_filter(gconstpointer user_data)
static void plugin_if_mainwindow_apply_filter(gconstpointer user_data)
{
if ( gbl_cur_main_window_ != NULL && user_data != NULL )
{
@ -100,7 +100,7 @@ void plugin_if_mainwindow_apply_filter(gconstpointer user_data)
}
}
void plugin_if_mainwindow_preference(gconstpointer user_data)
static void plugin_if_mainwindow_preference(gconstpointer user_data)
{
if ( gbl_cur_main_window_ != NULL && user_data != NULL )
{