spek

Acoustic spectrum analyser
git clone http://git.hanabi.in/repos/spek.git
Log | Files | Refs | README

commit eb00579ceba478e6e2e8a9f02144f55a7cd6b73a
parent 6adf81b56db602cbe3b8770cf467871876d5665e
Author: Alexander Kojevnikov <alexander@kojevnikov.com>
Date:   Sat,  2 Apr 2011 21:22:55 +0800

Fix a compile error with valac 0.11

Diffstat:
Msrc/spek-window.vala | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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 ("<ui>"); foreach (var action in actions.list_actions ()) {