Abstract implementation requirements have changed
This commit is contained in:
parent
bae3d0dd82
commit
a2ca866232
@ -299,19 +299,14 @@ namespace UniversalEditor.Editors.Contact
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
public override void Copy ()
|
||||
public override void UpdateSelections()
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
public override void Paste ()
|
||||
|
||||
protected override EditorSelection CreateSelectionInternal(object content)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
public override void Delete ()
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,17 +9,14 @@ namespace UniversalEditor.Plugins.AddressBook.UserInterface.Editors.ContactGroup
|
||||
{
|
||||
}
|
||||
|
||||
public override void Copy ()
|
||||
public override void UpdateSelections()
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
public override void Paste ()
|
||||
|
||||
protected override EditorSelection CreateSelectionInternal(object content)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
public override void Delete ()
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -6,19 +6,13 @@ namespace UniversalEditor.Editors.FamilyTree
|
||||
{
|
||||
public class FamilyTreeEditor : Editor
|
||||
{
|
||||
public override void Copy ()
|
||||
public override void UpdateSelections()
|
||||
{
|
||||
throw new System.NotImplementedException ();
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public override void Delete ()
|
||||
protected override EditorSelection CreateSelectionInternal(object content)
|
||||
{
|
||||
throw new System.NotImplementedException ();
|
||||
}
|
||||
|
||||
public override void Paste ()
|
||||
{
|
||||
throw new System.NotImplementedException ();
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
private static EditorReference _er = null;
|
||||
|
||||
@ -42,25 +42,20 @@ namespace UniversalEditor.Editors.Multimedia.Picture
|
||||
return _er;
|
||||
}
|
||||
|
||||
public override void Copy()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public override void Delete()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public override void Paste()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
protected override void OnObjectModelChanged(EventArgs e)
|
||||
{
|
||||
base.OnObjectModelChanged(e);
|
||||
this.da.Picture = (this.ObjectModel as PictureObjectModel);
|
||||
}
|
||||
|
||||
public override void UpdateSelections()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
protected override EditorSelection CreateSelectionInternal(object content)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -59,17 +59,14 @@ namespace UniversalEditor.Plugins.SoftwareDevelopment.UserInterface.Editors.Synt
|
||||
Controls.Add (txt, new BoxLayout.Constraints (true, true));
|
||||
}
|
||||
|
||||
public override void Copy ()
|
||||
public override void UpdateSelections()
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
public override void Paste ()
|
||||
|
||||
protected override EditorSelection CreateSelectionInternal(object content)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
public override void Delete ()
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user