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/XObject.cs')
-rw-r--r--main/src/addins/Xml/Dom/XObject.cs19
1 files changed, 9 insertions, 10 deletions
diff --git a/main/src/addins/Xml/Dom/XObject.cs b/main/src/addins/Xml/Dom/XObject.cs
index f999256eea..c55d3e3742 100644
--- a/main/src/addins/Xml/Dom/XObject.cs
+++ b/main/src/addins/Xml/Dom/XObject.cs
@@ -25,22 +25,21 @@
// THE SOFTWARE.
using System.Collections.Generic;
-using System.Text;
-using ICSharpCode.NRefactory.TypeSystem;
-using ICSharpCode.NRefactory;
+using System.Text;
+using MonoDevelop.Ide.Editor;
namespace MonoDevelop.Xml.Dom
{
public abstract class XObject
{
- DomRegion region;
+ DocumentRegion region;
- protected XObject (TextLocation start)
+ protected XObject (DocumentLocation start)
{
- region = new DomRegion (start, TextLocation.Empty);
+ region = new DocumentRegion (start, DocumentLocation.Empty);
}
- protected XObject (DomRegion region)
+ protected XObject (DocumentRegion region)
{
this.region = region;
}
@@ -57,13 +56,13 @@ namespace MonoDevelop.Xml.Dom
}
}
- public DomRegion Region {
+ public DocumentRegion Region {
get { return region; }
}
- public void End (TextLocation endLocation)
+ public void End (DocumentLocation endLocation)
{
- region = new DomRegion (region.Begin, endLocation);
+ region = new DocumentRegion (region.Begin, endLocation);
}
public bool IsEnded {