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/XCData.cs')
-rw-r--r--main/src/addins/Xml/Dom/XCData.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/main/src/addins/Xml/Dom/XCData.cs b/main/src/addins/Xml/Dom/XCData.cs
index 001f80521b..f850d91cec 100644
--- a/main/src/addins/Xml/Dom/XCData.cs
+++ b/main/src/addins/Xml/Dom/XCData.cs
@@ -24,15 +24,14 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
-using ICSharpCode.NRefactory.TypeSystem;
-using ICSharpCode.NRefactory;
+using MonoDevelop.Ide.Editor;
namespace MonoDevelop.Xml.Dom
{
public class XCData : XNode
{
- public XCData (TextLocation start) : base (start) {}
- public XCData (DomRegion region) : base (region) {}
+ public XCData (DocumentLocation start) : base (start) {}
+ public XCData (DocumentRegion region) : base (region) {}
protected XCData () {}
protected override XObject NewInstance () { return new XCData (); }