~ubuntu-branches/ubuntu/quantal/cairo-dock-plug-ins/quantal-201208191523

« back to all changes in this revision

Viewing changes to terminal/src/terminal-menu-functions.c

  • Committer: Bazaar Package Importer
  • Author(s): Matthieu Baerts (matttbe)
  • Date: 2010-09-07 02:38:17 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20100907023817-ish9a53i2wn0m7zg
Tags: 2.2.0~0rc1-0ubuntu1
* 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:
74
74
}
75
75
CD_APPLET_ON_BUILD_MENU_BEGIN
76
76
{
 
77
        // Sub-Menu (when clicking on a tab or in the terminal, another menu is raised)
77
78
        GtkWidget *pSubMenu = CD_APPLET_CREATE_MY_SUB_MENU ();
78
 
        CD_APPLET_ADD_IN_MENU(D_("New Tab"), on_new_tab, pSubMenu);
79
 
        CD_APPLET_ADD_IN_MENU(D_("Rename current Tab"), on_rename_tab, pSubMenu);
80
 
        CD_APPLET_ADD_IN_MENU(D_("Close current Tab"), on_close_tab, pSubMenu);
81
 
        CD_APPLET_ADD_SEPARATOR(pSubMenu);
 
79
        CD_APPLET_ADD_IN_MENU_WITH_STOCK (D_("New Tab"), GTK_STOCK_NEW, on_new_tab, CD_APPLET_MY_MENU);
 
80
        CD_APPLET_ADD_IN_MENU_WITH_STOCK (D_("Rename current Tab"), GTK_STOCK_EDIT, on_rename_tab, pSubMenu);
 
81
        CD_APPLET_ADD_IN_MENU_WITH_STOCK (D_("Close current Tab"), GTK_STOCK_CLOSE, on_close_tab, pSubMenu);
 
82
        CD_APPLET_ADD_SEPARATOR (pSubMenu);
82
83
        CD_APPLET_ADD_ABOUT_IN_MENU (pSubMenu);
83
84
}
84
85
CD_APPLET_ON_BUILD_MENU_END