~ubuntu-branches/ubuntu/oneiric/thunderbird/oneiric-proposed

« back to all changes in this revision

Viewing changes to debian/globalmenu/components/src/uGlobalMenuUtils.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson
  • Date: 2011-07-01 18:01:04 UTC
  • Revision ID: james.westby@ubuntu.com-20110701180104-d0r0qgp71f5goi3e
Tags: 5.0+build1+nobinonly-0ubuntu4
* Update globalmenu-extension to 1.7
  - Fixes LP: #797680 - "thunderbird -addressbook" and "thunderbird -compose"
    open a window without putting the menu in the panel, because the menu
    loader is started from the chrome overlay in the main window. Add the
    loader to the profile-after-change category instead
  - Fixes LP: #779905 - menubar sometimes appears inside the window rather
    than the panel, due to a startup race
* Apply some changes to the messagingmenu-extension:
  - Ignore new messages in archive folders
  - Don't request attention for messages which aren't starred and aren't
    addressed directly to the recipient
  - Always show messaging indicator shortcuts, even when we have a desktop
    file which has them

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
                  nsIContent *aContent,
55
55
                  uGlobalMenuBar *aMenuBar)
56
56
{
57
 
#if MOZILLA_BRANCH_MAJOR_VERSION < 2
58
 
  if (aContent->GetNameSpaceID() != kNameSpaceID_XUL) {
59
 
#else
60
57
  if (!aContent->IsXUL()) {
61
 
#endif
62
58
    return uGlobalMenuDummy::Create(aParent, aListener, aContent);
63
59
  }
64
60