Browse Source

Fixed build again.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@2692 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Daniel Grunwald 19 years ago
parent
commit
3bf02f9f17
  1. 29
      src/AddIns/Misc/SearchAndReplace/Test/MockDocument.cs

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

@ -19,10 +19,15 @@ namespace ICSharpCode.SharpDevelop.Tests.Utils @@ -19,10 +19,15 @@ namespace ICSharpCode.SharpDevelop.Tests.Utils
{
}
// disable "event not used" warning
#pragma warning disable 67
public event EventHandler UpdateCommited;
public event DocumentEventHandler DocumentAboutToBeChanged;
public event DocumentEventHandler DocumentChanged;
public event EventHandler TextContentChanged;
public event EventHandler<LineLengthChangeEventArgs> LineLengthChanged;
public event EventHandler<LineCountChangeEventArgs> LineCountChanged;
public event EventHandler<LineEventArgs> LineDeleted;
public ITextEditorProperties TextEditorProperties {
get {
@ -226,29 +231,5 @@ namespace ICSharpCode.SharpDevelop.Tests.Utils @@ -226,29 +231,5 @@ namespace ICSharpCode.SharpDevelop.Tests.Utils
{
throw new NotImplementedException();
}
void OnUpdateCommited()
{
if (UpdateCommited != null) {
}
}
void OnDocumentAboutToBeChanged()
{
if (DocumentAboutToBeChanged != null) {
}
}
void OnDocumentChanged()
{
if (DocumentChanged != null) {
}
}
void OnTextContentChanged()
{
if (TextContentChanged != null) {
}
}
}
}

Loading…
Cancel
Save