Browse Source

Fixed build.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@2366 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Daniel Grunwald 19 years ago
parent
commit
50bf57497f
  1. 4
      src/AddIns/BackendBindings/WixBinding/Test/Utils/MockViewContent.cs
  2. 2
      src/AddIns/DisplayBindings/XmlEditor/Test/Tree/XmlTreeViewClipboardHandlerTestFixture.cs
  3. 2
      src/Main/Base/Test/CSharpExpressionFinderTests.cs

4
src/AddIns/BackendBindings/WixBinding/Test/Utils/MockViewContent.cs

@ -39,7 +39,7 @@ namespace WixBinding.Tests.Utils @@ -39,7 +39,7 @@ namespace WixBinding.Tests.Utils
#pragma warning disable 67
public event EventHandler TabPageTextChanged;
public event EventHandler ViewActivated;
public event EventHandler SwitchedTo;
public event EventHandler Disposed;
public event EventHandler IsDirtyChanged;
public event EventHandler TitleNameChanged;
@ -144,7 +144,7 @@ namespace WixBinding.Tests.Utils @@ -144,7 +144,7 @@ namespace WixBinding.Tests.Utils
}
}
public void SwitchedTo()
public void OnSwitchedTo()
{
throw new NotImplementedException();
}

2
src/AddIns/DisplayBindings/XmlEditor/Test/Tree/XmlTreeViewClipboardHandlerTestFixture.cs

@ -44,7 +44,7 @@ namespace XmlEditor.Tests.Tree @@ -44,7 +44,7 @@ namespace XmlEditor.Tests.Tree
clipboardHandler = view as IClipboardHandler;
xmlView.XmlEditor.Text = "<html><body><p></p></body></html>";
view.SwitchedTo();
((IViewContent)view).OnSwitchedTo();
htmlTreeNode = treeView.Nodes[0] as XmlElementTreeNode;
htmlTreeNode.PerformInitialization();

2
src/Main/Base/Test/CSharpExpressionFinderTests.cs

@ -139,7 +139,7 @@ class Main { @@ -139,7 +139,7 @@ class Main {
[Test]
public void NewException()
{
FindFull(program2, "otFoundException", "NotFoundException()", ExpressionContext.TypeDerivingFrom(ParserService.DefaultProjectContentRegistry.Mscorlib.GetClass("System.Exception", 0), true));
FindFull(program2, "otFoundException", "NotFoundException()", ExpressionContext.TypeDerivingFrom(ParserService.DefaultProjectContentRegistry.Mscorlib.SystemTypes.Exception, true));
}
}
}

Loading…
Cancel
Save