[Pkg-cli-apps-commits] r5028 - in /packages/muine/trunk/debian: changelog patches/gtk_sharp_api patches/series

laney-guest at users.alioth.debian.org laney-guest at users.alioth.debian.org
Sat Jul 11 14:28:44 UTC 2009


Author: laney-guest
Date: Sat Jul 11 14:28:42 2009
New Revision: 5028

URL: http://svn.debian.org/wsvn/pkg-cli-apps/?sc=1&rev=5028
Log:
debian/patches/gtk_sharp_api: Upstream has altered the signature of
EmitRowsRecorded in the TreeModel interface. Update HandleModel.cs to be
compatible. (Closes: #533941)

Added:
    packages/muine/trunk/debian/patches/gtk_sharp_api
Modified:
    packages/muine/trunk/debian/changelog
    packages/muine/trunk/debian/patches/series

Modified: packages/muine/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/muine/trunk/debian/changelog?rev=5028&op=diff
==============================================================================
--- packages/muine/trunk/debian/changelog (original)
+++ packages/muine/trunk/debian/changelog Sat Jul 11 14:28:42 2009
@@ -2,11 +2,14 @@
 
   [ Iain Lane ]
   * debian/rules: Fix typo MAkefile -> Makefile.
+  * debian/patches/gtk_sharp_api: Upstream has altered the signature of
+    EmitRowsRecorded in the TreeModel interface. Update HandleModel.cs to be
+    compatible. (Closes: #533941)
 
   [ Tim Retout ]
   * Remove self from Uploaders.
 
- -- Tim Retout <tim at retout.co.uk>  Tue, 12 May 2009 23:01:39 +0100
+ -- Iain Lane <laney at ubuntu.com>  Sat, 11 Jul 2009 15:28:16 +0100
 
 muine (0.8.10-4) unstable; urgency=low
 

Added: packages/muine/trunk/debian/patches/gtk_sharp_api
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/muine/trunk/debian/patches/gtk_sharp_api?rev=5028&op=file
==============================================================================
--- packages/muine/trunk/debian/patches/gtk_sharp_api (added)
+++ packages/muine/trunk/debian/patches/gtk_sharp_api Sat Jul 11 14:28:42 2009
@@ -1,0 +1,17 @@
+--- a/src/HandleModel.cs
++++ b/src/HandleModel.cs
+@@ -489,12 +489,10 @@
+ 		}
+ 
+ 		[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")]

Modified: packages/muine/trunk/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/muine/trunk/debian/patches/series?rev=5028&op=diff
==============================================================================
--- packages/muine/trunk/debian/patches/series (original)
+++ packages/muine/trunk/debian/patches/series Sat Jul 11 14:28:42 2009
@@ -1,2 +1,3 @@
 metadata-crash.diff
 correct-glade-signals.diff
+gtk_sharp_api




More information about the Pkg-cli-apps-commits mailing list