diff options
author | Peter Alfredsen <loki_val@gentoo.org> | 2009-08-22 22:12:31 +0000 |
---|---|---|
committer | Peter Alfredsen <loki_val@gentoo.org> | 2009-08-22 22:12:31 +0000 |
commit | 4bdd5489e10d0e7db948b02c0a5bac4b8cbf62ef (patch) | |
tree | 13791c546ff92f038a9201cfb4c98e4fc48d5bd8 /media-sound/muine/files/muine-0.8.10-gtk-sharp-2.12.9.patch | |
parent | Remove ruby16 from USE_RUBY. (diff) | |
download | gentoo-2-4bdd5489e10d0e7db948b02c0a5bac4b8cbf62ef.tar.gz gentoo-2-4bdd5489e10d0e7db948b02c0a5bac4b8cbf62ef.tar.bz2 gentoo-2-4bdd5489e10d0e7db948b02c0a5bac4b8cbf62ef.zip |
Fix bug 272651, bugzilla.gnome.org bug 584702. Patch by Iain Lane.
(Portage version: 2.2_rc39/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/muine/files/muine-0.8.10-gtk-sharp-2.12.9.patch')
-rw-r--r-- | media-sound/muine/files/muine-0.8.10-gtk-sharp-2.12.9.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/media-sound/muine/files/muine-0.8.10-gtk-sharp-2.12.9.patch b/media-sound/muine/files/muine-0.8.10-gtk-sharp-2.12.9.patch new file mode 100644 index 000000000000..2e318aaa52bf --- /dev/null +++ b/media-sound/muine/files/muine-0.8.10-gtk-sharp-2.12.9.patch @@ -0,0 +1,19 @@ +diff --git a/src/HandleModel.cs b/src/HandleModel.cs +index 285d160..b0fc106 100644 +--- a/src/HandleModel.cs ++++ b/src/HandleModel.cs +@@ -489,12 +489,10 @@ namespace Muine + } + + [DllImport("libgtk-2.0-0.dll")] +- static extern void gtk_tree_model_rows_reordered(IntPtr raw, IntPtr path, ref Gtk.TreeIter iter, out int new_order); ++ static extern void gtk_tree_model_rows_reordered(IntPtr raw, IntPtr path, ref Gtk.TreeIter iter, out int[] new_order); + +- public int EmitRowsReordered(Gtk.TreePath path, Gtk.TreeIter iter) { +- int new_order; ++ public void EmitRowsReordered(Gtk.TreePath path, Gtk.TreeIter iter, int[] new_order) { + gtk_tree_model_rows_reordered(Handle, path.Handle, ref iter, out new_order); +- return new_order; + } + + [DllImport("libgtk-2.0-0.dll")] |