remove svn:executable from .cs files
[mono.git] / mcs / class / System.Drawing / System.Drawing.Drawing2D / GraphicsContainer.cs
index 3a046e61dc01d6477099295574e4330892d4c68c..9389c0a0a226df3db3c7ecb44e8810b4c595a523 100644 (file)
@@ -1,12 +1,12 @@
-//\r
-// System.Drawing.Drawing2D.GraphicsContainer.cs\r
-//\r
-// Authors:\r
+//
+// System.Drawing.Drawing2D.GraphicsContainer.cs
+//
+// Authors:
 //   Dennis Hayes (dennish@Raytek.com)
-//   Andreas Nahr (ClassDevelopment@A-SoftTech.com)\r
-//\r
-// (C) 2002/3 Ximian, Inc\r
-//\r
+//   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
+//
+// (C) 2002/3 Ximian, Inc
+//
 
 //
 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-using System;\r
-\r
-namespace System.Drawing.Drawing2D {\r
-       /// <summary>\r
-       /// Summary description for GraphicsContainer.\r
-       /// </summary>\r
-       public sealed class GraphicsContainer : MarshalByRefObject {\r
-               \r
-               internal int nativeState = 0;\r
-               \r
-               private GraphicsContainer ()
-               {\r
-                       
-               }\r
-               \r
+using System;
+
+namespace System.Drawing.Drawing2D {
+       /// <summary>
+       /// Summary description for GraphicsContainer.
+       /// </summary>
+       public sealed class GraphicsContainer : MarshalByRefObject {
+               
+               private int nativeState = 0;
+
+               private GraphicsContainer () { }
+               
                internal GraphicsContainer (int state)
-               {\r
+               {
                        nativeState = state;
-               }\r
-               \r
-               internal int NativeObject{            \r
-                               get{\r
-                                               return nativeState;\r
-                               }\r
-                               set     {\r
-                                               nativeState = value;\r
-                               }\r
-                       }\r
-       }\r
-}\r
+               }
+               
+               internal int NativeObject {
+                       get {
+                               return nativeState;
+                       }
+                       set {
+                               nativeState = value;
+                       }
+               }
+       }
+}