Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-dev: Re: [Wireshark-dev] I want to add a menuitem in statistics menu, what should i d

From: Anders Broman <anders.broman@xxxxxxxxxxxx>
Date: Tue, 18 Mar 2014 15:37:39 +0000

Hi,

By the file names it sounds like you are working against an older release that stuff is now in

Ui/gtk/ main_menubar.c

 

 

I don’t remember when we got rid of the deprecated ...factory.. stuff but assuming it’s

 

static const GtkActionEntry main_menu_bar_entries[] = {

 

make sure the action name

 

static const char *ui_desc_menubar =

"<ui>\n"

"  <menubar name ='Menubar'>\n"

"    <menu name= 'FileMenu' action=''>\n"

                                     ^^^

 

Matches

static const GtkActionEntry main_menu_bar_entries[] = {

  /* Top level */

  { "/File",                    NULL,                              "_File",              NULL,                   NULL,           NULL },

      ^^^

 

Regards

Anders

 

From: wireshark-dev-bounces@xxxxxxxxxxxxx [mailto:wireshark-dev-bounces@xxxxxxxxxxxxx] On Behalf Of ?????
Sent: den 18 mars 2014 16:22
To: wireshark-dev
Subject: [Wireshark-dev] I want to add a menuitem in statistics menu, what should i do?

 

I just want to add a menuitem in statistics menu,what should i do?

I modified the ui_desc_menubar string  in gtk/menus.c  and a item in main_menu_bar_entries in gtk/menus.c,but it din't function well,what should i do ?