Remove register_stat_menu_item() if MAIN_MENU_USE_UIMANAGER 1

svn path=/trunk/; revision=38658
This commit is contained in:
Anders Broman 2011-08-22 07:46:10 +00:00
parent 2450d57b38
commit 6d409485ac
2 changed files with 0 additions and 62 deletions

View File

@ -62,14 +62,6 @@ extern "C" {
* @param callback_data data for callback function
*/
#ifdef MAIN_MENU_USE_UIMANAGER
void
register_stat_menu_item(
const char *name _U_,
register_stat_group_t group _U_,
gpointer callback _U_,
gboolean (*selected_packet_enabled)(frame_data *, epan_dissect_t *, gpointer callback_data) _U_,
gboolean (*selected_tree_row_enabled)(field_info *, gpointer callback_data) _U_,
gpointer callback_data _U_);
#else
void
register_stat_menu_item(

View File

@ -3624,60 +3624,6 @@ register_stat_menu_item_stock(
callback_data, curnode);
}
/*
* Add a new menu item for a stat.
* This must be called after we've created the main menu, so it can't
* be called from the routine that registers stats - we have to introduce
* another per-stat registration routine.
*
* @param name the menu label
*
* @param group the menu group this stat should be registered to
*
* @param callback gets called when the menu item is selected; it should do
* the work of creating the stat window.
*
* @param selected_packet_enabled gets called by set_menus_for_selected_packet();
* it's passed a pointer to the "frame_data" structure for the current frame,
* if any, and to the "epan_dissect_t" structure for that frame, if any, and
* should return TRUE if the stat will work now (which might depend on whether
* a frame is selected and, if one is, on the frame) and FALSE if not.
*
* @param selected_tree_row_enabled gets called by
* set_menus_for_selected_tree_row(); it's passed a pointer to the
* "field_info" structure for the currently selected field, if any,
* and should return TRUE if the stat will work now (which might depend on
* whether a tree row is selected and, if one is, on the tree row) and
* FALSE if not.
*
* @param callback_data data for callback function
*/
void
register_stat_menu_item(
const char *name _U_,
register_stat_group_t group _U_,
gpointer callback _U_,
gboolean (*selected_packet_enabled)(frame_data *, epan_dissect_t *, gpointer callback_data) _U_,
gboolean (*selected_tree_row_enabled)(field_info *, gpointer callback_data) _U_,
gpointer callback_data _U_)
{
#if 0
register_stat_menu_item_stock(
group,
NULL, /* gui_path */
name, /* name */
NULL, /* stock_id */
name, /* label */
NULL, /* accelerator */
NULL, /* tooltip */
G_CALLBACK(callback),
FALSE,
selected_packet_enabled,
selected_tree_row_enabled,
callback_data);
#endif
}
#if 0
static void