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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/addins/Xml/Dom/XElement.cs')
-rw-r--r--main/src/addins/Xml/Dom/XElement.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/main/src/addins/Xml/Dom/XElement.cs b/main/src/addins/Xml/Dom/XElement.cs
index a49a2b81d4..81ff5eceba 100644
--- a/main/src/addins/Xml/Dom/XElement.cs
+++ b/main/src/addins/Xml/Dom/XElement.cs
@@ -25,8 +25,8 @@
// THE SOFTWARE.
using System.Collections.Generic;
-using System.Text;
-using ICSharpCode.NRefactory;
+using System.Text;
+using MonoDevelop.Ide.Editor;
namespace MonoDevelop.Xml.Dom
{
@@ -35,12 +35,12 @@ namespace MonoDevelop.Xml.Dom
XNode closingTag;
readonly XAttributeCollection attributes;
- public XElement (TextLocation start) : base (start)
+ public XElement (DocumentLocation start) : base (start)
{
attributes = new XAttributeCollection (this);
}
- public XElement (TextLocation start, XName name) : this (start)
+ public XElement (DocumentLocation start, XName name) : this (start)
{
this.Name = name;
}