Codebase list gnome-shell-extension-appindicator / 3366b40
DBusMenu: Spelling fix Jonas Kümmerlin 8 years ago
1 changed file(s) with 3 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
753753 this._rootMenu = menu
754754 this._rootItem = this._client.get_root()
755755
756 // cleanup: remove existing childs (just in case)
756 // cleanup: remove existing children (just in case)
757757 this._rootMenu.removeAll()
758758
759759 if (NEED_NESTED_SUBMENU_FIX)
766766 }, this._menuDisconnectHandlers)
767767 Util.connectAndSaveId(this._rootItem, {
768768 "child-added" : this._onRootChildAdded.bind(this),
769 "child-removed" : this._onRootChildRemoved.bind(this),
770 "child-moved" : this._onRootChildMoved.bind(this)
769 "child-removed" : this._onRootChildRemoved.bind(this),
770 "child-moved" : this._onRootChildMoved.bind(this)
771771 }, this._rootItemDisconnectHandlers)
772772
773773 // fill the menu for the first time