Browse Source

Fixed build.

pull/14/head
Daniel Grunwald 15 years ago
parent
commit
73684b9a45
  1. 5
      src/AddIns/BackendBindings/Scripting/Test/Utils/FakeDocument.cs
  2. 5
      src/AddIns/DisplayBindings/XmlEditor/Test/Utils/MockDocument.cs
  3. 5
      src/AddIns/Misc/SearchAndReplace/Test/MockDocument.cs

5
src/AddIns/BackendBindings/Scripting/Test/Utils/FakeDocument.cs

@ -67,6 +67,11 @@ namespace ICSharpCode.Scripting.Tests.Utils
throw new NotImplementedException(); throw new NotImplementedException();
} }
public void Insert(int offset, string text, AnchorMovementType defaultAnchorMovementType)
{
throw new NotImplementedException();
}
public void Remove(int offset, int length) public void Remove(int offset, int length)
{ {
throw new NotImplementedException(); throw new NotImplementedException();

5
src/AddIns/DisplayBindings/XmlEditor/Test/Utils/MockDocument.cs

@ -81,6 +81,11 @@ namespace XmlEditor.Tests.Utils
throw new NotImplementedException(); throw new NotImplementedException();
} }
public void Insert(int offset, string text, AnchorMovementType defaultAnchorMovementType)
{
throw new NotImplementedException();
}
public void Remove(int offset, int length) public void Remove(int offset, int length)
{ {
throw new NotImplementedException(); throw new NotImplementedException();

5
src/AddIns/Misc/SearchAndReplace/Test/MockDocument.cs

@ -62,6 +62,11 @@ namespace SearchAndReplace.Tests.Utils
throw new NotImplementedException(); throw new NotImplementedException();
} }
public void Insert(int offset, string text, AnchorMovementType defaultAnchorMovementType)
{
throw new NotImplementedException();
}
public void Remove(int offset, int length) public void Remove(int offset, int length)
{ {
throw new NotImplementedException(); throw new NotImplementedException();

Loading…
Cancel
Save