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

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

[Dotgnu-pnet-commits] CVS: pnetlib/System.Drawing.Win32 Debug.cs, NONE,


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/System.Drawing.Win32 Debug.cs, NONE, 1.1 DrawingWindow.cs, 1.10, 1.11
Date: Tue, 12 Aug 2003 21:21:43 -0400

Update of /cvsroot/dotgnu-pnet/pnetlib/System.Drawing.Win32
In directory subversions:/tmp/cvs-serv11169/System.Drawing.Win32

Modified Files:
        DrawingWindow.cs 
Added Files:
        Debug.cs 
Log Message:


Changes for ECMA compatibility.


--- NEW FILE ---
/*
 * Debug.cs - Implementation of the
 *                      "System.Diagnostics.Debug" class.
 *
 * Copyright (C) 2003  Southern Storm Software, Pty Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

namespace System.Diagnostics
{

#if ECMA_COMPAT

#define DEBUG
#define TRACE

// Replacement for the "System.Diagnostics.Debug" class, which does
// not exist within "System.dll" in ECMA-compatibility mode.

internal sealed class Debug
{
        // This class cannot be instantiated.
        private Debug() {}

        // Write a message to all trace listeners.
        [Conditional("DEBUG")]
        public static void Write(Object value)
                        {
                                Console.Write(value);
                        }
        [Conditional("DEBUG")]
        public static void Write(String message)
                        {
                                Console.Write(message);
                        }
        [Conditional("DEBUG")]
        public static void Write(Object value, String category)
                        {
                                Console.Write(value);
                        }
        [Conditional("DEBUG")]
        public static void Write(String message, String category)
                        {
                                Console.Write(message);
                        }

        // Write a message to all trace listeners.
        [Conditional("DEBUG")]
        public static void WriteLine(Object value)
                        {
                                Console.WriteLine(value);
                        }
        [Conditional("DEBUG")]
        public static void WriteLine(String message)
                        {
                                Console.WriteLine(message);
                        }
        [Conditional("DEBUG")]
        public static void WriteLine(Object value, String category)
                        {
                                Console.WriteLine(value);
                        }
        [Conditional("DEBUG")]
        public static void WriteLine(String message, String category)
                        {
                                Console.WriteLine(message);
                        }

}; // class Debug

#endif // ECMA_COMPAT

}; // namespace System.Diagnostics

Index: DrawingWindow.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/System.Drawing.Win32/DrawingWindow.cs,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** DrawingWindow.cs    6 Aug 2003 21:05:11 -0000       1.10
--- DrawingWindow.cs    13 Aug 2003 01:21:41 -0000      1.11
***************
*** 535,539 ****
                                break;
                        case Win32.Api.WindowsMessages.WM_ERASEBKGND:
!                               EraseBackground( (IntPtr)wParam );
                                retval=1;
                                break;
--- 535,539 ----
                                break;
                        case Win32.Api.WindowsMessages.WM_ERASEBKGND:
!                               EraseBackground( new IntPtr(wParam) );
                                retval=1;
                                break;





reply via email to

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