Browse Source

Fix build.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@5467 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
pull/1/head
Daniel Grunwald 16 years ago
parent
commit
820a347fdd
  1. 8
      src/AddIns/BackendBindings/Python/PythonBinding/Test/Utils/MockWorkbench.cs
  2. 1
      src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/PackageFilesView.cs
  3. 9
      src/AddIns/BackendBindings/WixBinding/Test/Utils/MockWorkbench.cs
  4. 9
      src/AddIns/DisplayBindings/XmlEditor/Test/Utils/MockWorkbench.cs

8
src/AddIns/BackendBindings/Python/PythonBinding/Test/Utils/MockWorkbench.cs

@ -159,5 +159,13 @@ namespace PythonBinding.Tests.Utils @@ -159,5 +159,13 @@ namespace PythonBinding.Tests.Utils
throw new NotImplementedException();
}
public bool FullScreen {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
}
}

1
src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/PackageFilesView.cs

@ -15,7 +15,6 @@ using ICSharpCode.AvalonEdit.AddIn.Options; @@ -15,7 +15,6 @@ using ICSharpCode.AvalonEdit.AddIn.Options;
using ICSharpCode.Core;
using ICSharpCode.NRefactory;
using ICSharpCode.SharpDevelop;
using ICSharpCode.Core;
using ICSharpCode.SharpDevelop.Dom;
using ICSharpCode.SharpDevelop.Editor;
using ICSharpCode.SharpDevelop.Editor.AvalonEdit;

9
src/AddIns/BackendBindings/WixBinding/Test/Utils/MockWorkbench.cs

@ -187,5 +187,14 @@ namespace WixBinding.Tests.Utils @@ -187,5 +187,14 @@ namespace WixBinding.Tests.Utils
ViewClosed(this, e);
}
}
public bool FullScreen {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
}
}

9
src/AddIns/DisplayBindings/XmlEditor/Test/Utils/MockWorkbench.cs

@ -190,5 +190,14 @@ namespace XmlEditor.Tests.Utils @@ -190,5 +190,14 @@ namespace XmlEditor.Tests.Utils
{
throw new NotImplementedException();
}
public bool FullScreen {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
}
}

Loading…
Cancel
Save