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/XClosingTag.cs')
-rw-r--r--main/src/addins/Xml/Dom/XClosingTag.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/src/addins/Xml/Dom/XClosingTag.cs b/main/src/addins/Xml/Dom/XClosingTag.cs
index c134dea6a4..3973ad2ab8 100644
--- a/main/src/addins/Xml/Dom/XClosingTag.cs
+++ b/main/src/addins/Xml/Dom/XClosingTag.cs
@@ -24,15 +24,15 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
-using ICSharpCode.NRefactory;
+using MonoDevelop.Ide.Editor;
namespace MonoDevelop.Xml.Dom
{
public class XClosingTag : XNode, INamedXObject
{
- public XClosingTag (TextLocation start) : base (start) {}
+ public XClosingTag (DocumentLocation start) : base (start) {}
- public XClosingTag (XName name, TextLocation start) : base (start)
+ public XClosingTag (XName name, DocumentLocation start) : base (start)
{
this.Name = name;
}