summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2010-10-07 20:34:08 +0000
committerPacho Ramos <pacho@gentoo.org>2010-10-07 20:34:08 +0000
commit84983709bed5ac6262e88c9e803299c8c2ba0695 (patch)
tree8a1a3920185e71f51f584b15ece734298b453f1c /media-sound/muine/files
parentRemove old. (diff)
downloadgentoo-2-84983709bed5ac6262e88c9e803299c8c2ba0695.tar.gz
gentoo-2-84983709bed5ac6262e88c9e803299c8c2ba0695.tar.bz2
gentoo-2-84983709bed5ac6262e88c9e803299c8c2ba0695.zip
Remove old.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/muine/files')
-rw-r--r--media-sound/muine/files/muine-0.8.10-buttons.patch49
-rw-r--r--media-sound/muine/files/muine-0.8.10-gtk-sharp-2.12.9.patch19
2 files changed, 0 insertions, 68 deletions
diff --git a/media-sound/muine/files/muine-0.8.10-buttons.patch b/media-sound/muine/files/muine-0.8.10-buttons.patch
deleted file mode 100644
index 4825ff0adcee..000000000000
--- a/media-sound/muine/files/muine-0.8.10-buttons.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-From 7091829d92427f7f2773fa7519e5c5e6b95b3a17 Mon Sep 17 00:00:00 2001
-From: Priit Laes <plaes@plaes.org>
-Date: Mon, 10 Nov 2008 01:00:31 +0200
-Subject: [PATCH] Workaround for non-working signals specified in Glade file.
-
----
- data/glade/AddWindow.glade | 2 --
- src/AddWindow.cs | 5 ++++-
- 2 files changed, 4 insertions(+), 3 deletions(-)
-
-diff --git a/data/glade/AddWindow.glade b/data/glade/AddWindow.glade
-index 0e72749..4b3ef0e 100644
---- a/data/glade/AddWindow.glade
-+++ b/data/glade/AddWindow.glade
-@@ -19,8 +19,6 @@
- <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
- <property name="focus_on_map">True</property>
- <property name="has_separator">False</property>
-- <signal name="response" handler="OnWindowResponse" last_modification_time="Tue, 04 Jan 2005 17:48:15 GMT"/>
-- <signal name="delete_event" handler="OnWindowDeleteEvent" last_modification_time="Tue, 04 Jan 2005 17:48:11 GMT"/>
-
- <child internal-child="vbox">
- <widget class="GtkVBox" id="dialog-vbox1">
-diff --git a/src/AddWindow.cs b/src/AddWindow.cs
-index 0b602f6..eba501c 100644
---- a/src/AddWindow.cs
-+++ b/src/AddWindow.cs
-@@ -23,7 +23,7 @@ using System.Collections;
-
- namespace Muine
- {
-- public abstract class AddWindow : Gtk.Window
-+ public abstract class AddWindow : Gtk.Dialog
- {
- #region Enums
- #region Enums.ResponseType
-@@ -116,6 +116,9 @@ namespace Muine
- this.entry_container.Add (this.entry);
-
- // List
-+ this.Response += OnWindowResponse;
-+ this.DeleteEvent += OnWindowDeleteEvent;
-+
- this.list.RowActivated += OnRowActivated;
- this.list.Selection.Changed += OnSelectionChanged;
- scrolledwindow.Add (this.list);
---
-1.6.0.3
-
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
deleted file mode 100644
index 2e318aaa52bf..000000000000
--- a/media-sound/muine/files/muine-0.8.10-gtk-sharp-2.12.9.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-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")]