diff -ur mcs/decl.cs /opt/cvs/mono/mcs/mcs/decl.cs --- mcs/decl.cs Sun Mar 9 14:50:29 2003 +++ /opt/cvs/mono/mcs/mcs/decl.cs Fri Feb 28 20:31:32 2003 @@ -628,7 +628,7 @@ continue; Type match = null; - foreach (Mono.CSharp.Namespace.UsingEntry ue in using_list){ + foreach (Namespace.UsingEntry ue in using_list){ match = LookupInterfaceOrClass (ue.Name, name, out error); if (error) return null; diff -ur mcs/expression.cs /opt/cvs/mono/mcs/mcs/expression.cs --- mcs/expression.cs Sun Mar 9 14:54:09 2003 +++ /opt/cvs/mono/mcs/mcs/expression.cs Fri Feb 28 20:31:32 2003 @@ -6647,7 +6647,7 @@ Type ret_type; ptr_type_name = type.FullName + "&"; - ret_type = System.Type.GetType (ptr_type_name); + ret_type = Type.GetType (ptr_type_name); // // It is a type defined by the source code we are compiling @@ -7365,7 +7365,7 @@ string array_ptr_type_name = array_type.FullName + "*"; - type = System.Type.GetType (array_ptr_type_name); + type = Type.GetType (array_ptr_type_name); if (type == null){ ModuleBuilder mb = CodeGen.ModuleBuilder; @@ -7469,7 +7469,7 @@ return null; string ptr_name = otype.FullName + "*"; - type = System.Type.GetType (ptr_name); + type = Type.GetType (ptr_name); if (type == null){ ModuleBuilder mb = CodeGen.ModuleBuilder;