Skip to content

Commit

Permalink
Merge pull request #3 from freexploit/gnome-3
Browse files Browse the repository at this point in the history
Changes in manager.vala for problems compiling
  • Loading branch information
rainwoodman committed Oct 1, 2012
2 parents e4502d3 + dffe1f7 commit 1aaead0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion extension/extension.js.in
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ let oldAppMenuButton;
let button;

function init() {
let leftChildren = Main.panel._leftBox.get_children_list();
let leftChildren = Main.panel._leftBox.get_children();
oldAppMenuButton = leftChildren[leftChildren.length - 1];
}

Expand Down
2 changes: 1 addition & 1 deletion extension/metadata.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"shell-version": ["3.2.0"], "uuid": "GlobalMenu@globalmenu.org", "name": "GlobalMenu", "description": "Global Menu for Gnome 3.0"}
{"shell-version": ["3.4"], "uuid": "GlobalMenu@globalmenu.org", "name": "GlobalMenu", "description": "Global Menu for Gnome 3.0"}
4 changes: 2 additions & 2 deletions src/manager.vala
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[DBus (name="org.globalmenu.menu")]
public interface Menu: Object {
public abstract async void get_ui(string path, out string ui) throws IOError;
public abstract async void get_ui(string path, out string ui) throws IOError;
public abstract uint64 xwindow {get; }
public abstract async void emit(string path) throws IOError;
}

private class KnownBusName {
public class KnownBusName {
public Datalist<Menu> known_objects;
public uint watch_id;
}
Expand Down

0 comments on commit 1aaead0

Please sign in to comment.