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

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

[dotgnu-pnet-commits] pnetlib ChangeLog csupport/FDStream.cs DotGNU.T...


From: Heiko Weiss
Subject: [dotgnu-pnet-commits] pnetlib ChangeLog csupport/FDStream.cs DotGNU.T...
Date: Mon, 02 Feb 2009 10:47:23 +0000

CVSROOT:        /sources/dotgnu-pnet
Module name:    pnetlib
Changes by:     Heiko Weiss <brubbel>   09/02/02 10:47:23

Modified files:
        .              : ChangeLog 
        csupport       : FDStream.cs 
        DotGNU.Terminal: Readline.cs 
        runtime/System/IO: SymbolicLinks.cs 
        System.Drawing/Toolkit: ToolkitManager.cs 
        System.Windows.Forms/Themes: ThemeManager.cs 
        System.Windows.Forms: FileDialog.cs 

Log message:
        replaced (PlatformID)128 with PlatformID.Unix, patch by Klaus Treichel

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pnetlib/ChangeLog?cvsroot=dotgnu-pnet&r1=1.2555&r2=1.2556
http://cvs.savannah.gnu.org/viewcvs/pnetlib/csupport/FDStream.cs?cvsroot=dotgnu-pnet&r1=1.2&r2=1.3
http://cvs.savannah.gnu.org/viewcvs/pnetlib/DotGNU.Terminal/Readline.cs?cvsroot=dotgnu-pnet&r1=1.2&r2=1.3
http://cvs.savannah.gnu.org/viewcvs/pnetlib/runtime/System/IO/SymbolicLinks.cs?cvsroot=dotgnu-pnet&r1=1.2&r2=1.3
http://cvs.savannah.gnu.org/viewcvs/pnetlib/System.Drawing/Toolkit/ToolkitManager.cs?cvsroot=dotgnu-pnet&r1=1.17&r2=1.18
http://cvs.savannah.gnu.org/viewcvs/pnetlib/System.Windows.Forms/Themes/ThemeManager.cs?cvsroot=dotgnu-pnet&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/pnetlib/System.Windows.Forms/FileDialog.cs?cvsroot=dotgnu-pnet&r1=1.20&r2=1.21

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/dotgnu-pnet/pnetlib/ChangeLog,v
retrieving revision 1.2555
retrieving revision 1.2556
diff -u -b -r1.2555 -r1.2556
--- ChangeLog   2 Feb 2009 10:20:28 -0000       1.2555
+++ ChangeLog   2 Feb 2009 10:47:21 -0000       1.2556
@@ -1,5 +1,15 @@
 2009-02-02  Heiko Weiss <address@hidden>
 
+       * csupport/FDStream.cs,
+       DotGNU.Terminal/Readline.cs,
+       runtime/System/IO/SymbolicLinks.cs,
+       System.Drawing/Toolkit/ToolkitManager.cs,
+       System.Windows.Forms/Themes/ThemeManager.cs,
+       System.Windows.Forms/FileDialog.cs: replaced (PlatformID)128 with
+       PlatformID.Unix, patch by Klaus Treichel.
+
+2009-02-02  Heiko Weiss <address@hidden>
+
        * System.Xml/XmlReader.cs: fix ReadElementString because of fix in 
ReadString
 
 2009-02-01  Klaus Treichel  <address@hidden>

Index: csupport/FDStream.cs
===================================================================
RCS file: /sources/dotgnu-pnet/pnetlib/csupport/FDStream.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- csupport/FDStream.cs        16 Mar 2004 04:54:58 -0000      1.2
+++ csupport/FDStream.cs        2 Feb 2009 10:47:22 -0000       1.3
@@ -61,7 +61,7 @@
                        {
                                get
                                {
-                                       if(Environment.OSVersion.Platform != 
(PlatformID)128)
+                                       if(Environment.OSVersion.Platform != 
PlatformID.Unix)
                                        {
                                                // Win32-style system: cannot 
select.
                                                return -1;

Index: DotGNU.Terminal/Readline.cs
===================================================================
RCS file: /sources/dotgnu-pnet/pnetlib/DotGNU.Terminal/Readline.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- DotGNU.Terminal/Readline.cs 21 Jul 2004 06:55:03 -0000      1.2
+++ DotGNU.Terminal/Readline.cs 2 Feb 2009 10:47:22 -0000       1.3
@@ -72,7 +72,7 @@
        private static bool IsWindows()
                        {
                        #if !ECMA_COMPAT
-                               return (Environment.OSVersion.Platform != 
(PlatformID)128);
+                               return (Environment.OSVersion.Platform != 
PlatformID.Unix);
                        #else
                                return (Path.DirectorySeparatorChar == '\\');
                        #endif

Index: runtime/System/IO/SymbolicLinks.cs
===================================================================
RCS file: /sources/dotgnu-pnet/pnetlib/runtime/System/IO/SymbolicLinks.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- runtime/System/IO/SymbolicLinks.cs  24 Nov 2004 19:28:40 -0000      1.2
+++ runtime/System/IO/SymbolicLinks.cs  2 Feb 2009 10:47:22 -0000       1.3
@@ -41,7 +41,7 @@
        private static bool IsWindows()
                        {
                        #if !ECMA_COMPAT
-                               return (InfoMethods.GetPlatformID() != 
(PlatformID)128);
+                               return (InfoMethods.GetPlatformID() != 
PlatformID.Unix);
                        #else
                                return (Path.DirectorySeparatorChar == '\\');
                        #endif

Index: System.Drawing/Toolkit/ToolkitManager.cs
===================================================================
RCS file: 
/sources/dotgnu-pnet/pnetlib/System.Drawing/Toolkit/ToolkitManager.cs,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -b -r1.17 -r1.18
--- System.Drawing/Toolkit/ToolkitManager.cs    5 Jun 2006 12:14:49 -0000       
1.17
+++ System.Drawing/Toolkit/ToolkitManager.cs    2 Feb 2009 10:47:22 -0000       
1.18
@@ -75,7 +75,7 @@
        private static bool IsUnix()
                        {
                        #if !ECMA_COMPAT
-                               if(Environment.OSVersion.Platform != 
(PlatformID)128) /* Unix */
+                               if(Environment.OSVersion.Platform != 
PlatformID.Unix)
                        #else
                                if(Path.DirectorySeparatorChar == '\\' ||
                                   Path.AltDirectorySeparatorChar == '\\')

Index: System.Windows.Forms/Themes/ThemeManager.cs
===================================================================
RCS file: 
/sources/dotgnu-pnet/pnetlib/System.Windows.Forms/Themes/ThemeManager.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- System.Windows.Forms/Themes/ThemeManager.cs 19 Jul 2004 20:55:27 -0000      
1.3
+++ System.Windows.Forms/Themes/ThemeManager.cs 2 Feb 2009 10:47:22 -0000       
1.4
@@ -73,7 +73,7 @@
                private static bool IsUnix()
                {
                        #if !ECMA_COMPAT
-                       if(Environment.OSVersion.Platform != (PlatformID)128) 
/* Unix */
+                       if(Environment.OSVersion.Platform != PlatformID.Unix)
                                #else
                                        if(Path.DirectorySeparatorChar == '\\' 
||
                                        Path.AltDirectorySeparatorChar == '\\')

Index: System.Windows.Forms/FileDialog.cs
===================================================================
RCS file: /sources/dotgnu-pnet/pnetlib/System.Windows.Forms/FileDialog.cs,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -b -r1.20 -r1.21
--- System.Windows.Forms/FileDialog.cs  22 Nov 2005 18:49:47 -0000      1.20
+++ System.Windows.Forms/FileDialog.cs  2 Feb 2009 10:47:22 -0000       1.21
@@ -714,7 +714,7 @@
        private static bool IsWindows()
                        {
                        #if !ECMA_COMPAT
-                               return (Environment.OSVersion.Platform != 
(PlatformID)128);
+                               return (Environment.OSVersion.Platform != 
PlatformID.Unix);
                        #else
                                return (Path.DirectorySeparatorChar == '\\');
                        #endif




reply via email to

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