aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Arnold <nerdboy@gentoo.org>2018-03-18 11:34:15 -0700
committerSteve Arnold <nerdboy@gentoo.org>2018-03-18 11:35:14 -0700
commit8344cc2cb0ab42e155075d2eac09f76d3931c13c (patch)
treeef703e8359824b703896c38500d1f2b19f8395e9 /dev-libs/granite/files/granite-0.3.0-build-fix.patch
parentsys-power/cpufrequtils: needed an init script update (diff)
downloadarm-8344cc2cb0ab42e155075d2eac09f76d3931c13c.tar.gz
arm-8344cc2cb0ab42e155075d2eac09f76d3931c13c.tar.bz2
arm-8344cc2cb0ab42e155075d2eac09f76d3931c13c.zip
dev-libs/granite: add vala patch for 0.3.0
Signed-off-by: Steve Arnold <nerdboy@gentoo.org>
Diffstat (limited to 'dev-libs/granite/files/granite-0.3.0-build-fix.patch')
-rw-r--r--dev-libs/granite/files/granite-0.3.0-build-fix.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/dev-libs/granite/files/granite-0.3.0-build-fix.patch b/dev-libs/granite/files/granite-0.3.0-build-fix.patch
new file mode 100644
index 0000000..f93a3c6
--- /dev/null
+++ b/dev-libs/granite/files/granite-0.3.0-build-fix.patch
@@ -0,0 +1,22 @@
+=== modified file 'lib/Widgets/ContractorView.vala'
+--- lib/Widgets/ContractorView.vala 2014-09-04 12:39:00 +0000
++++ lib/Widgets/ContractorView.vala 2015-03-23 05:21:46 +0000
+@@ -35,7 +35,7 @@
+ public delegate void ContractCallback ();
+ private Gee.HashMap<int, DelegateWrapper?> outsiders;
+ private int[] blacklisted_pos;
+- private ListStore list;
++ private Gtk.ListStore list;
+
+ private struct DelegateWrapper { unowned ContractCallback method; }
+
+@@ -73,7 +73,7 @@
+ */
+ public ContractorView (string filename, string mime, int icon_size = 32, bool show_contract_name = true) {
+ /* Setup the ListStore */
+- list = new ListStore (2, typeof (Gdk.Pixbuf), typeof (string));
++ list = new Gtk.ListStore (2, typeof (Gdk.Pixbuf), typeof (string));
+ outsiders = new Gee.HashMap<int, DelegateWrapper?> ();
+ this.model = list;
+
+