[Pkg-mono-svn-commits] rev 2823 - in non-group/stetic/trunk/debian: . patches

Mirco Bauer meebey-guest at costa.debian.org
Tue Oct 24 19:16:17 UTC 2006


Author: meebey-guest
Date: 2006-10-24 19:16:16 +0000 (Tue, 24 Oct 2006)
New Revision: 2823

Added:
   non-group/stetic/trunk/debian/patches/
   non-group/stetic/trunk/debian/patches/00list
   non-group/stetic/trunk/debian/patches/compile_fix.dpatch
Modified:
   non-group/stetic/trunk/debian/changelog
Log:
- fix



Modified: non-group/stetic/trunk/debian/changelog
===================================================================
--- non-group/stetic/trunk/debian/changelog	2006-10-24 18:48:26 UTC (rev 2822)
+++ non-group/stetic/trunk/debian/changelog	2006-10-24 19:16:16 UTC (rev 2823)
@@ -1,4 +1,4 @@
-stetic (0.1.0~svn.64684-1) unstable; urgency=low
+stetic (0.1.0~svn.64684-1~pre1) unstable; urgency=low
 
   * Initial release
 

Added: non-group/stetic/trunk/debian/patches/00list
===================================================================
--- non-group/stetic/trunk/debian/patches/00list	                        (rev 0)
+++ non-group/stetic/trunk/debian/patches/00list	2006-10-24 19:16:16 UTC (rev 2823)
@@ -0,0 +1 @@
+compile_fix

Added: non-group/stetic/trunk/debian/patches/compile_fix.dpatch
===================================================================
--- non-group/stetic/trunk/debian/patches/compile_fix.dpatch	                        (rev 0)
+++ non-group/stetic/trunk/debian/patches/compile_fix.dpatch	2006-10-24 19:16:16 UTC (rev 2823)
@@ -0,0 +1,58 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## compile_fix.dpatch by Mirco Bauer <meebey at meebey.net>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: No description.
+
+ at DPATCH@
+diff -urNad stetic-svn~/libstetic/editor/ActionToolItem.cs stetic-svn/libstetic/editor/ActionToolItem.cs
+--- stetic-svn~/libstetic/editor/ActionToolItem.cs	2006-10-24 21:02:46.000000000 +0200
++++ stetic-svn/libstetic/editor/ActionToolItem.cs	2006-10-24 21:02:59.000000000 +0200
+@@ -305,7 +305,7 @@
+ 			
+ 			// Make sure we get the focus after closing the menu, so we can keep browsing buttons
+ 			// using the keyboard.
+-			menu.Hidden += delegate (object s, EventArgs a) {
++			menu.Hidden += delegate (object o, EventArgs a) {
+ 				GrabFocus ();
+ 			};
+ 			
+diff -urNad stetic-svn~/libstetic/editor/Flags.cs stetic-svn/libstetic/editor/Flags.cs
+--- stetic-svn~/libstetic/editor/Flags.cs	2006-10-24 21:02:53.000000000 +0200
++++ stetic-svn/libstetic/editor/Flags.cs	2006-10-24 21:03:53.000000000 +0200
+@@ -11,7 +11,7 @@
+ 			if (Value == null)
+ 				return "";
+ 
+-			uint value = (uint)(int)(Enum)Value;
++			uint value = (uint)(int)Value;
+ 			EnumDescriptor enm = Registry.LookupEnum (Property.PropertyType.FullName);
+ 			string txt = "";
+ 			foreach (Enum val in enm.Values) {
+@@ -19,7 +19,7 @@
+ 				if (eval.Label == "")
+ 					continue;
+ 				
+-				if ((value & (uint)(int)(Enum) eval.Value) != 0) {
++				if ((value & (uint)(int) eval.Value) != 0) {
+ 					if (txt.Length > 0) txt += ", ";
+ 					txt += eval.Label;
+ 				}
+@@ -113,7 +113,7 @@
+ 				return Enum.ToObject (enm.EnumType, UIntValue);
+ 			}
+ 			set {
+-				uint newVal = (uint)(int)(Enum)value;
++				uint newVal = (uint)(int)value;
+ 				if (flagsLabel != null) {
+ 					string txt = "";
+ 					foreach (Enum val in enm.Values) {
+@@ -121,7 +121,7 @@
+ 						if (eval.Label == "")
+ 							continue;
+ 						
+-						if ((newVal & (uint)(int)(Enum) eval.Value) != 0) {
++						if ((newVal & (uint)(int) eval.Value) != 0) {
+ 							if (txt.Length > 0) txt += ", ";
+ 							txt += eval.Label;
+ 						}


Property changes on: non-group/stetic/trunk/debian/patches/compile_fix.dpatch
___________________________________________________________________
Name: svn:executable
   + *




More information about the Pkg-mono-svn-commits mailing list