Browse Source

2002-08-14 Dick Porter <[email protected]>

	* Thread.cs: Make CurrentUICulture act the same as CurrentCulture
	for now.

svn path=/trunk/mcs/; revision=6625
Dick Porter 23 years ago
parent
commit
c3ef3b2ace

+ 5 - 0
mcs/class/corlib/System.Threading/ChangeLog

@@ -1,3 +1,8 @@
+2002-08-14  Dick Porter  <[email protected]>
+
+	* Thread.cs: Make CurrentUICulture act the same as CurrentCulture
+	for now.
+
 2002-08-12  Dietmar Maurer  <[email protected]>
 
 	* ThreadAbortException.cs: impl. ExceptionState property.

+ 3 - 1
mcs/class/corlib/System.Threading/Thread.cs

@@ -226,10 +226,12 @@ namespace System.Threading
 		public CultureInfo CurrentUICulture {
 			get {
 				// FIXME
-				return(null);
+				return(CurrentCulture);
 			}
 			
 			set {
+				// FIXME
+				CurrentCulture=value;
 			}
 		}