[egg-list-box] test-list: Fix compile error
- From: Jasper St. Pierre <jstpierre src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [egg-list-box] test-list: Fix compile error
- Date: Sun, 16 Jun 2013 19:12:05 +0000 (UTC)
commit a3b21aa41c86d9d3f43cf642ac11103b61864e0a
Author: Jasper St. Pierre <jstpierre mecheye net>
Date: Sun Jun 16 15:11:20 2013 -0400
test-list: Fix compile error
With the new GtkListBox widget, "ListBox" is ambiguous and Vala
assumes that GtkListBox is wanted, then crashes and burns since
the APIs are different.
test-list.vala | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/test-list.vala b/test-list.vala
index e18d258..00b4816 100644
--- a/test-list.vala
+++ b/test-list.vala
@@ -73,7 +73,7 @@ main (string[] args) {
var hbox = new Box(Orientation.HORIZONTAL, 0);
w.add (hbox);
- var list = new ListBox();
+ var list = new Egg.ListBox();
hbox.add (list);
list.child_activated.connect ( (child) => {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]