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/Parser/XmlRootState.cs')
-rw-r--r--main/src/addins/Xml/Parser/XmlRootState.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/main/src/addins/Xml/Parser/XmlRootState.cs b/main/src/addins/Xml/Parser/XmlRootState.cs
index d77d7e787b..bdc49a57a9 100644
--- a/main/src/addins/Xml/Parser/XmlRootState.cs
+++ b/main/src/addins/Xml/Parser/XmlRootState.cs
@@ -26,8 +26,8 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-using ICSharpCode.NRefactory.TypeSystem;
-using MonoDevelop.Xml.Dom;
+using MonoDevelop.Xml.Dom;
+using MonoDevelop.Ide.Editor;
namespace MonoDevelop.Xml.Parser
{
@@ -106,7 +106,7 @@ namespace MonoDevelop.Xml.Parser
if (c == '<') {
if (context.StateTag != FREE)
context.LogError ("Incomplete tag opening; encountered unexpected '<'.",
- new DomRegion (
+ new DocumentRegion (
context.LocationMinus (LengthFromOpenBracket (context) + 1),
context.LocationMinus (1)));
context.StateTag = BRACKET;
@@ -176,7 +176,7 @@ namespace MonoDevelop.Xml.Parser
}
context.LogError ("Incomplete tag opening; encountered unexpected character '" + c + "'.",
- new DomRegion (
+ new DocumentRegion (
context.LocationMinus (LengthFromOpenBracket (context)),
context.Location));