From eb00579ceba478e6e2e8a9f02144f55a7cd6b73a Mon Sep 17 00:00:00 2001 From: Alexander Kojevnikov Date: Sat, 2 Apr 2011 21:22:55 +0800 Subject: [PATCH] Fix a compile error with valac 0.11 --- src/spek-window.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/spek-window.vala b/src/spek-window.vala index 59ac321..ba0f306 100644 --- a/src/spek-window.vala +++ b/src/spek-window.vala @@ -50,7 +50,7 @@ namespace Spek { destroy.connect (Gtk.main_quit); ui = new UIManager (); - var actions = new ActionGroup ("Actions"); + var actions = new Gtk.ActionGroup ("Actions"); actions.add_actions (ACTION_ENTRIES, this); var toolbar = new Toolbar (); @@ -332,7 +332,7 @@ namespace Spek { return null; } - private string get_accel_ui_string (ActionGroup actions) { + private string get_accel_ui_string (Gtk.ActionGroup actions) { var sb = new StringBuilder (); sb.append (""); foreach (var action in actions.list_actions ()) {