Author: schaveyt
Date: 2007-03-11 22:01:04 -0500 (Sun, 11 Mar 2007)
New Revision: 74092

Modified:
   trunk/cocoa-sharp/src/Cocoa/View.cs
Log:
Actual code updates from previous non-update.


Modified: trunk/cocoa-sharp/src/Cocoa/View.cs
===================================================================
--- trunk/cocoa-sharp/src/Cocoa/View.cs 2007-03-12 03:00:07 UTC (rev 74091)
+++ trunk/cocoa-sharp/src/Cocoa/View.cs 2007-03-12 03:01:04 UTC (rev 74092)
@@ -3,11 +3,20 @@
 using Cocoa;
 
 namespace Cocoa {
-       public class View : Responder {
-               private static string ObjectiveCName = "NSView";                
                                                                      
-               public View () : base () {}
+    
+       public class View : Responder 
+    {
+               private static string ObjectiveCName = "NSView";
+        
+               public View () 
+            : base ()
+        {
+        }
 
-               public View (IntPtr native_object) : base (native_object) {}
+               public View (IntPtr native_object) 
+            : base (native_object) 
+        {
+        }
 
                public View (Rect frame) : base () {
                        if (this.GetType ().IsSubclassOf (typeof (View))) 

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to