Merge pull request #5010 from Unity-Technologies/boehm-gc-alloc-fixed-sre
[mono.git] / mcs / class / System.Drawing / System.Drawing.Printing / PageSettings.cs
index 52bc98abd81ef21590b696fbac24069f24e2fcd2..330ba62a2d8e2053cf1b03aaa959f9e4236b595a 100644 (file)
@@ -37,11 +37,7 @@ using System.Runtime.InteropServices;
 
 namespace System.Drawing.Printing
 {
-#if NET_2_0
        [Serializable]
-#else
-       [ComVisible (false)]
-#endif
        public class PageSettings : ICloneable
        {
                internal bool color;
@@ -52,13 +48,12 @@ namespace System.Drawing.Printing
 
                // create a new default Margins object (is 1 inch for all margins)
                Margins margins = new Margins();
-
-#if NET_2_0
+#pragma warning disable 649
                float hardMarginX;
                float hardMarginY;
                RectangleF printableArea;               
-#endif         
                PrinterSettings printerSettings;
+#pragma warning restore 649
                
                public PageSettings() : this(new PrinterSettings())
                {
@@ -182,7 +177,6 @@ namespace System.Drawing.Printing
                                printerSettings = value;
                        }
                }               
-#if NET_2_0
                public float HardMarginX {
                        get {
                                return hardMarginX;
@@ -200,16 +194,15 @@ namespace System.Drawing.Printing
                                return printableArea;
                        }
                }
-#endif
 
 
                public object Clone ()
                {
                        // We do a deep copy
-                       PrinterResolution pres = new PrinterResolution (this.printerResolution.X, this.printerResolution.Y, this.printerResolution.Kind);
-                       PaperSource psource = new PaperSource (this.paperSource.SourceName, this.paperSource.Kind);
+                       PrinterResolution pres = new PrinterResolution (this.printerResolution.Kind, this.printerResolution.X, this.printerResolution.Y);
+                       PaperSource psource = new PaperSource (this.paperSource.Kind, this.paperSource.SourceName);
                        PaperSize psize = new PaperSize (this.paperSize.PaperName, this.paperSize.Width, this.paperSize.Height);
-                       psize.SetKind (this.paperSize.Kind);
+                       psize.RawKind = (int)this.paperSize.Kind;
 
                        PageSettings ps = new PageSettings (this.printerSettings, this.color, this.landscape,
                                        psize, psource, pres);