dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[dotgnu-pnet-commits] pnetlib ChangeLog System.Drawing/Toolkit/Toolki...


From: Deryk Robosson
Subject: [dotgnu-pnet-commits] pnetlib ChangeLog System.Drawing/Toolkit/Toolki...
Date: Mon, 05 Jun 2006 12:05:04 +0000

CVSROOT:        /cvsroot/dotgnu-pnet
Module name:    pnetlib
Changes by:     Deryk Robosson <drobosson>      06/06/05 12:05:04

Modified files:
        .              : ChangeLog 
        System.Drawing/Toolkit: ToolkitManager.cs 
        System.Drawing : ImageAnimator.cs SystemIcons.cs 

Log message:
        Prevent the compiler from generating a default constructor for us 
because our classes are static

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pnetlib/ChangeLog?cvsroot=dotgnu-pnet&r1=1.2418&r2=1.2419
http://cvs.savannah.gnu.org/viewcvs/pnetlib/System.Drawing/Toolkit/ToolkitManager.cs?cvsroot=dotgnu-pnet&r1=1.15&r2=1.16
http://cvs.savannah.gnu.org/viewcvs/pnetlib/System.Drawing/ImageAnimator.cs?cvsroot=dotgnu-pnet&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/pnetlib/System.Drawing/SystemIcons.cs?cvsroot=dotgnu-pnet&r1=1.5&r2=1.6

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/ChangeLog,v
retrieving revision 1.2418
retrieving revision 1.2419
diff -u -b -r1.2418 -r1.2419
--- ChangeLog   5 Jun 2006 11:48:24 -0000       1.2418
+++ ChangeLog   5 Jun 2006 12:05:04 -0000       1.2419
@@ -24,6 +24,20 @@
        * System.Drawing/Region.cs, System.Drawing/Drawing2D/Matrix.cs:
        Complete descriptive message for ArgumentNullException.
 
+       * System.Drawing/Printing/PrinterSettings.cs,
+       System.Drawing/Printing/InvalidPrinterException.cs: Add
+       NonSerializedAttribute and Serializable where required.
+
+       * System.Drawing/Imaging/EncoderParameter.cs,
+       System.Drawing/Imaging/ImageAttribute.cs,
+       System.Drawing/StringFormat.cs, System.Drawing/FontFamily.cs,
+       System.Drawing/Drawing2D/Matrix.cs: Remove empty finalizers.
+
+       * System.Drawing/Toolkit/ToolkitManager.cs,
+       System.Drawing/ImageAnimator.cs, System.Drawing/SystemIcons.cs:
+       Prevent compiler from adding a default constructor for us as instances
+       of types that define only static members do not need to be created.
+
 2006-06-02  Heiko Weiss  <address@hidden>
 
        * System.Windows.Forms/Control.cs, 

Index: System.Drawing/Toolkit/ToolkitManager.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System.Drawing/Toolkit/ToolkitManager.cs,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -b -r1.15 -r1.16
--- System.Drawing/Toolkit/ToolkitManager.cs    1 Jun 2006 11:55:04 -0000       
1.15
+++ System.Drawing/Toolkit/ToolkitManager.cs    5 Jun 2006 12:05:04 -0000       
1.16
@@ -34,6 +34,8 @@
        private static IToolkit toolkit;
        private static IToolkitPrintingSystem printingSystem;
 
+       public ToolkitManager() {}
+
        // Get or set the active graphical display toolkit.
        public static IToolkit Toolkit
                        {

Index: System.Drawing/ImageAnimator.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/System.Drawing/ImageAnimator.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- System.Drawing/ImageAnimator.cs     28 Sep 2003 21:57:56 -0000      1.1
+++ System.Drawing/ImageAnimator.cs     5 Jun 2006 12:05:04 -0000       1.2
@@ -26,6 +26,8 @@
 
        public sealed class ImageAnimator
        {
+               public ImageAnimator() {}
+
                [TODO]
                public static void UpdateFrames(Image image)
                {

Index: System.Drawing/SystemIcons.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/System.Drawing/SystemIcons.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- System.Drawing/SystemIcons.cs       8 Aug 2005 13:09:55 -0000       1.5
+++ System.Drawing/SystemIcons.cs       5 Jun 2006 12:05:04 -0000       1.6
@@ -47,6 +47,8 @@
                private static Icon warningIcon;
                private static Icon windowsLogoIcon;
 
+               public SystemIcons() {}
+
                public static Icon Application
                {
                        get




reply via email to

[Prev in Thread] Current Thread [Next in Thread]