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/XContainer.cs')
-rw-r--r--main/src/addins/Xml/Dom/XContainer.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/src/addins/Xml/Dom/XContainer.cs b/main/src/addins/Xml/Dom/XContainer.cs
index 997def1ad0..dd6e0c10fd 100644
--- a/main/src/addins/Xml/Dom/XContainer.cs
+++ b/main/src/addins/Xml/Dom/XContainer.cs
@@ -25,14 +25,14 @@
// THE SOFTWARE.
using System.Collections.Generic;
-using System.Text;
-using ICSharpCode.NRefactory;
+using System.Text;
+using MonoDevelop.Ide.Editor;
namespace MonoDevelop.Xml.Dom
{
public abstract class XContainer : XNode
{
- protected XContainer (TextLocation start) : base (start) { }
+ protected XContainer (DocumentLocation start) : base (start) { }
XNode firstNode;
XNode lastChild;