From 2cd9a82ecd0f4699a33b193b74b436037d8b3361 Mon Sep 17 00:00:00 2001 From: Rodolphe PELLOUX-PRAYER Date: Sun, 7 Jun 2015 19:36:59 +0200 Subject: [PATCH] Fix ambiguous references between GLib.ListStore and Gtk.ListStore GLib.ListStore is a new class in GIO and creates a conflict in Vala 0.28 Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=787880 --- src/moonshot-identity-management-view.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/moonshot-identity-management-view.vala b/src/moonshot-identity-management-view.vala index 158b652..d9d7c5a 100644 --- a/src/moonshot-identity-management-view.vala +++ b/src/moonshot-identity-management-view.vala @@ -55,7 +55,7 @@ public class IdentityManagerView : Window { private CheckButton remember_checkbutton; private Button update_password_button; - private ListStore* listmodel; + private Gtk.ListStore* listmodel; private TreeModelFilter filter; public IdentityManagerModel identities_manager; @@ -177,7 +177,7 @@ public class IdentityManagerView : Window { private void setup_list_model () { - this.listmodel = new ListStore (Columns.N_COLUMNS, typeof (IdCard), + this.listmodel = new Gtk.ListStore (Columns.N_COLUMNS, typeof (IdCard), typeof (Gdk.Pixbuf), typeof (string), typeof (string), -- 2.1.4