Browse Source

Fixed build.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@5414 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
pull/1/head
Daniel Grunwald 16 years ago
parent
commit
2c13b4b3e6
  1. 8
      src/AddIns/BackendBindings/WixBinding/Test/Utils/MockTextEditorOptions.cs
  2. 8
      src/AddIns/DisplayBindings/XmlEditor/Test/Utils/MockTextEditorOptions.cs

8
src/AddIns/BackendBindings/WixBinding/Test/Utils/MockTextEditorOptions.cs

@ -46,5 +46,13 @@ namespace WixBinding.Tests.Utils @@ -46,5 +46,13 @@ namespace WixBinding.Tests.Utils
throw new NotImplementedException();
}
}
public bool UnderlineErrors {
get {
throw new NotImplementedException();
}
}
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged { add { } remove { } }
}
}

8
src/AddIns/DisplayBindings/XmlEditor/Test/Utils/MockTextEditorOptions.cs

@ -42,5 +42,13 @@ namespace XmlEditor.Tests.Utils @@ -42,5 +42,13 @@ namespace XmlEditor.Tests.Utils
throw new NotImplementedException();
}
}
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged { add { } remove { } }
public bool UnderlineErrors {
get {
throw new NotImplementedException();
}
}
}
}

Loading…
Cancel
Save