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/AspNet/WebForms/Dom/WebFormsDirective.cs')
-rw-r--r--main/src/addins/AspNet/WebForms/Dom/WebFormsDirective.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/main/src/addins/AspNet/WebForms/Dom/WebFormsDirective.cs b/main/src/addins/AspNet/WebForms/Dom/WebFormsDirective.cs
index 744e6480e6..e17e59e022 100644
--- a/main/src/addins/AspNet/WebForms/Dom/WebFormsDirective.cs
+++ b/main/src/addins/AspNet/WebForms/Dom/WebFormsDirective.cs
@@ -26,8 +26,8 @@
using System.Diagnostics;
using System.Text;
-using ICSharpCode.NRefactory;
-using MonoDevelop.Xml.Dom;
+using MonoDevelop.Xml.Dom;
+using MonoDevelop.Ide.Editor;
namespace MonoDevelop.AspNet.WebForms.Dom
{
@@ -36,12 +36,12 @@ namespace MonoDevelop.AspNet.WebForms.Dom
XName name;
XAttributeCollection attributes;
- public WebFormsDirective (TextLocation start) : base (start)
+ public WebFormsDirective (DocumentLocation start) : base (start)
{
attributes = new XAttributeCollection (this);
}
- public WebFormsDirective (TextLocation start, XName name) : this (start)
+ public WebFormsDirective (DocumentLocation start, XName name) : this (start)
{
this.name = name;
}