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. 11
      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
throw new NotImplementedException(); 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;
using ICSharpCode.Core; using ICSharpCode.Core;
using ICSharpCode.NRefactory; using ICSharpCode.NRefactory;
using ICSharpCode.SharpDevelop; using ICSharpCode.SharpDevelop;
using ICSharpCode.Core;
using ICSharpCode.SharpDevelop.Dom; using ICSharpCode.SharpDevelop.Dom;
using ICSharpCode.SharpDevelop.Editor; using ICSharpCode.SharpDevelop.Editor;
using ICSharpCode.SharpDevelop.Editor.AvalonEdit; using ICSharpCode.SharpDevelop.Editor.AvalonEdit;

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

@ -186,6 +186,15 @@ namespace WixBinding.Tests.Utils
if (ViewClosed != null) { if (ViewClosed != null) {
ViewClosed(this, e); 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
{ {
throw new NotImplementedException(); throw new NotImplementedException();
} }
public bool FullScreen {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
} }
} }

Loading…
Cancel
Save