summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-08-10 21:31:19 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-08-10 21:31:19 +0000
commiteb49ab7caf8b3456d00e409ed6af4da03ef7cb0f (patch)
treefc72bd2cc56925792200c8b0ed6cdc378c93ed97 /ui
parent0724542b9c78a6631446d47ac7e7281c57e0d3d3 (diff)
downloadwireshark-eb49ab7caf8b3456d00e409ed6af4da03ef7cb0f.tar.gz
Fix (-W)documentation error found by Clang
../../ui/gtk/gui_stat_menu.h:47:11: error: parameter 'group' not found in the function declaration [-Werror,-Wdocumentation] * @param group the menu group this stat should be registered to ^~~~~ svn path=/trunk/; revision=51277
Diffstat (limited to 'ui')
-rw-r--r--ui/gtk/gui_stat_menu.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/ui/gtk/gui_stat_menu.h b/ui/gtk/gui_stat_menu.h
index d8082c8b8e..d1a2a86c60 100644
--- a/ui/gtk/gui_stat_menu.h
+++ b/ui/gtk/gui_stat_menu.h
@@ -44,8 +44,6 @@ stat_group_name(register_stat_group_t group);
*
* @param name the menu label
*
- * @param group the menu group this stat should be registered to
- *
* @param stock_id the stock_id (icon) to show, or NULL
*
* @param callback gets called when the menu item is selected; it should do
@@ -74,7 +72,7 @@ void register_menu_bar_menu_items(
const char *accelerator,
const gchar *tooltip,
gpointer callback,
- gpointer callback_data,
+ gpointer callback_data,
gboolean enabled,
gboolean (*selected_packet_enabled)(frame_data *, epan_dissect_t *, gpointer callback_data),
gboolean (*selected_tree_row_enabled)(field_info *, gpointer callback_data));