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/Diagnostics/Process.cs


From: Klaus Treichel
Subject: [dotgnu-pnet-commits] pnetlib ./ChangeLog System/Diagnostics/Process.cs
Date: Sun, 19 Feb 2006 15:01:46 +0000

CVSROOT:        /cvsroot/dotgnu-pnet
Module name:    pnetlib
Branch:         
Changes by:     Klaus Treichel <address@hidden> 06/02/19 15:01:46

Modified files:
        .              : ChangeLog 
        System/Diagnostics: Process.cs 

Log message:
        2006-02-19  Radek Polak  <address@hidden>
        
        * System/Diagnostics/Process.cs: Change environment variables in
        ProcessStartInfo.EnvironmentVariables to upper case (Bug# 15802).
        
        Reformat some ChangeLog entries so tat they do not exeed 80 chars. 
(Klaus)

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/dotgnu-pnet/pnetlib/ChangeLog.diff?tr1=1.2354&tr2=1.2355&r1=text&r2=text
http://cvs.savannah.gnu.org/viewcvs/dotgnu-pnet/pnetlib/System/Diagnostics/Process.cs.diff?tr1=1.13&tr2=1.14&r1=text&r2=text

Patches:
Index: pnetlib/ChangeLog
diff -u pnetlib/ChangeLog:1.2354 pnetlib/ChangeLog:1.2355
--- pnetlib/ChangeLog:1.2354    Fri Feb 17 07:06:35 2006
+++ pnetlib/ChangeLog   Sun Feb 19 15:01:46 2006
@@ -1,14 +1,24 @@
+2006-02-19  Radek Polak  <address@hidden>
+
+       * System/Diagnostics/Process.cs: Change environment variables in
+       ProcessStartInfo.EnvironmentVariables to upper case (Bug# 15802).
+       
+       Reformat some ChangeLog entries so tat they do not exeed 80 chars. 
(Klaus)
+
 2006-02-17  Heiko Weiss <address@hidden>
 
-       * System.Drawing.Xsharp/DrawingPen.cs: let pen.DashStyle to be 
DashStyle.Custom and use pen.DashPattern as dasharray
+       * System.Drawing.Xsharp/DrawingPen.cs: let pen.DashStyle to be
+       DashStyle.Custom and use pen.DashPattern as dasharray.
 
 2006-02-13  Heiko Weiss <address@hidden>
 
-       * System.Drawing/Drawing2D/GraphicsPath.cs: added functionality to draw 
text in graphics path
+       * System.Drawing/Drawing2D/GraphicsPath.cs: added functionality to draw
+       text in graphics path
 
 2006-02-13  Heiko Weiss <address@hidden>
 
-       * System.Windows.Forms/TabControl.cs: fixed drawing TabPage first time 
(bug #15698)
+       * System.Windows.Forms/TabControl.cs: fixed drawing TabPage first time
+       (bug #15698)
 
 2006-02-06  Heiko Weiss <address@hidden>
 
@@ -16,7 +26,8 @@
 
 2006-02-03  Peter Flaig  <address@hidden>
 
-       * runtime/System/DateTime.cs: fixed exception in AddMonths, if the new 
month has less days then the old month
+       * runtime/System/DateTime.cs: fixed exception in AddMonths, if the new 
month
+       has less days then the old month
 
 2006-02-01  Heiko Weiss <address@hidden>
 
@@ -40,9 +51,8 @@
        * System.Windows.Forms/Form.cs,
        * Xsharp/TopLevelWindow.cs:
        enable transparent forms.
-       can be used with xorg and if option "Composite" is "Enable" in section 
"Extensions" in xorg.conf.
-       Now we can display semi transparent forms!!!.
-       
+       can be used with xorg and if option "Composite" is "Enable" in section
+       "Extensions" in xorg.conf. Now we can display semi transparent forms!!!.
 
 2006-01-05  Gopal V  <address@hidden>
 
Index: pnetlib/System/Diagnostics/Process.cs
diff -u pnetlib/System/Diagnostics/Process.cs:1.13 
pnetlib/System/Diagnostics/Process.cs:1.14
--- pnetlib/System/Diagnostics/Process.cs:1.13  Sat Dec  3 10:17:12 2005
+++ pnetlib/System/Diagnostics/Process.cs       Sun Feb 19 15:01:46 2006
@@ -27,6 +27,7 @@
 using System.IO;
 using System.ComponentModel;
 using System.Collections;
+using System.Globalization;
 using System.Collections.Specialized;
 using System.Runtime.CompilerServices;
 using System.Security.Permissions;
@@ -900,8 +901,8 @@
                                                        
(startInfo.envVars.GetEnumerator());
                                        while(e.MoveNext())
                                        {
-                                               coll.Add(((String)(e.Key)) + 
"=" +
-                                                                
((String)(e.Value)));
+                                               
coll.Add(((String)(e.Key)).ToUpper(CultureInfo.InvariantCulture) +
+                                                "=" + ((String)(e.Value)));
                                        }
                                        env = new String [coll.Count];
                                        coll.CopyTo(env, 0);




reply via email to

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