Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs
diff options
context:
space:
mode:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2004-09-09 03:26:06 +0400
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2004-09-09 03:26:06 +0400
commitf3bd1c213621e89a9e6686c699c781c8249fbe08 (patch)
treebf4a1ebcc2f6890770d623bbb7b6dbbf7efbad12 /mcs
parent3858f1a29c00e85484e0bb6286119988bc783e8e (diff)
2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* WebServiceCompiler.cs: fix buglet in my last commit. svn path=/branches/mono-1-0/mcs/; revision=33602
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/System.Web/System.Web.Compilation/ChangeLog4
-rw-r--r--mcs/class/System.Web/System.Web.Compilation/WebServiceCompiler.cs2
2 files changed, 5 insertions, 1 deletions
diff --git a/mcs/class/System.Web/System.Web.Compilation/ChangeLog b/mcs/class/System.Web/System.Web.Compilation/ChangeLog
index 5d1e428381b..80c8ae1ffbf 100644
--- a/mcs/class/System.Web/System.Web.Compilation/ChangeLog
+++ b/mcs/class/System.Web/System.Web.Compilation/ChangeLog
@@ -1,3 +1,7 @@
+2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+ * WebServiceCompiler.cs: fix buglet in my last commit.
+
2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* BaseCompiler.cs:
diff --git a/mcs/class/System.Web/System.Web.Compilation/WebServiceCompiler.cs b/mcs/class/System.Web/System.Web.Compilation/WebServiceCompiler.cs
index 469bb0aba72..4df2b6b9a94 100644
--- a/mcs/class/System.Web/System.Web.Compilation/WebServiceCompiler.cs
+++ b/mcs/class/System.Web/System.Web.Compilation/WebServiceCompiler.cs
@@ -64,7 +64,7 @@ namespace System.Web.Compilation
return type;
if (parser.Program.Trim () == "") {
- type = parser.GetTypeFromBin (parser.PhysicalPath);
+ type = parser.GetTypeFromBin (parser.ClassName);
CachingCompiler.InsertType (type, parser.PhysicalPath);
return type;
}