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/WebFormsExpression.cs')
-rw-r--r--main/src/addins/AspNet/WebForms/Dom/WebFormsExpression.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/main/src/addins/AspNet/WebForms/Dom/WebFormsExpression.cs b/main/src/addins/AspNet/WebForms/Dom/WebFormsExpression.cs
index c67eff4f37..8013a9fe45 100644
--- a/main/src/addins/AspNet/WebForms/Dom/WebFormsExpression.cs
+++ b/main/src/addins/AspNet/WebForms/Dom/WebFormsExpression.cs
@@ -25,19 +25,18 @@
// THE SOFTWARE.
-using ICSharpCode.NRefactory;
-using ICSharpCode.NRefactory.TypeSystem;
using MonoDevelop.Xml.Dom;
+using MonoDevelop.Ide.Editor;
namespace MonoDevelop.AspNet.WebForms.Dom
{
public abstract class WebFormsExpression : XNode
{
- protected WebFormsExpression (DomRegion region) : base (region)
+ protected WebFormsExpression (DocumentRegion region) : base (region)
{
}
- protected WebFormsExpression (TextLocation start) : base (start)
+ protected WebFormsExpression (DocumentLocation start) : base (start)
{
}