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
diff options
context:
space:
mode:
authorKonstantin Triger <kostat@mono-cvs.ximian.com>2006-08-02 17:35:43 +0400
committerKonstantin Triger <kostat@mono-cvs.ximian.com>2006-08-02 17:35:43 +0400
commit44a8061934ee8c25aae3e44e71c81fb8ae752ab7 (patch)
tree54ddf9a79b77627428a51f749fec8773e6b6c384 /mcs/class/System.XML/Mono.Xml.Xsl
parent1484ea99d7e117a34cf1ed0803072e1fddb65047 (diff)
cosmetic changes to enable compilation with MS 1.1 compiler
svn path=/trunk/mcs/; revision=63249
Diffstat (limited to 'mcs/class/System.XML/Mono.Xml.Xsl')
-rw-r--r--mcs/class/System.XML/Mono.Xml.Xsl/XslOutput.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/mcs/class/System.XML/Mono.Xml.Xsl/XslOutput.cs b/mcs/class/System.XML/Mono.Xml.Xsl/XslOutput.cs
index e62a2174982..f9b78a842a8 100644
--- a/mcs/class/System.XML/Mono.Xml.Xsl/XslOutput.cs
+++ b/mcs/class/System.XML/Mono.Xml.Xsl/XslOutput.cs
@@ -282,13 +282,13 @@ namespace Mono.Xml.Xsl
if (stylesheetVersion != "1.0")
break;
- IXmlLineInfo li = nav as IXmlLineInfo;
+ IXmlLineInfo xli = nav as IXmlLineInfo;
throw new XsltCompileException (new XsltException (
"'" + nav.LocalName + "' is an invalid attribute for 'output'" +
" element.", (Exception) null),
nav.BaseURI,
- li != null ? li.LineNumber : 0,
- li != null ? li.LinePosition : 0);
+ xli != null ? xli.LineNumber : 0,
+ xli != null ? xli.LinePosition : 0);
}
}
}