~didrocks/cairo-dock-plug-ins/fix-abi-transition

« back to all changes in this revision

Viewing changes to netspeed/src/applet-notifications.c

  • Committer: matttbe
  • Date: 2010-09-07 00:39:20 UTC
  • Revision ID: matttbe@gmail.com-20100907003920-jb7hpit570zdaf44
* New Upstream Version (LP: #632054)
* Fixed a few bugs on LP:
 - LP: #616176 Dust Bin Hang and Incorrect Configuration
 - LP: #604034 Change terminal tab's name lost the color
 - LP: #582452 GMenu does not contain any applications
* Fixed a few bugs on glx-dock forum:
 - Fixed support of GMusicBrowser.
 - AlsaMixer has no emblem.
 - Status-Notifier doesn't be drawed into the dock.
* Updated translations
* debian/control:
 - Added cairo-dock-core as build-depends in order to prevent
   some builds errors.

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
}
68
68
CD_APPLET_ON_BUILD_MENU_BEGIN
69
69
        GtkWidget *pSubMenu = CD_APPLET_CREATE_MY_SUB_MENU ();
70
 
        CD_APPLET_ADD_IN_MENU (D_("Monitor System"), _show_monitor_system, pSubMenu);
 
70
        
 
71
        // Main Menu
 
72
        CD_APPLET_ADD_IN_MENU_WITH_STOCK (D_("System Monitor"), GTK_STOCK_MEDIA_PLAY, _show_monitor_system, CD_APPLET_MY_MENU);
 
73
        
 
74
        // Sub-Menu
71
75
        if (! myData.bAcquisitionOK) {
72
76
                CD_APPLET_ADD_IN_MENU (D_("Re-check interface"), _netspeed_recheck, pSubMenu);
 
77
                CD_APPLET_ADD_SEPARATOR_IN_MENU (pSubMenu);
73
78
        }
74
79
        CD_APPLET_ADD_ABOUT_IN_MENU (pSubMenu);
 
80
 
75
81
CD_APPLET_ON_BUILD_MENU_END
76
82
 
77
83