diff -r beb938b4fb76 -r bd33267300aa client/src/Iri.Modernisation.Controls/ViewModel/HeaderProduction/HeaderProductionChapterVM.cs --- a/client/src/Iri.Modernisation.Controls/ViewModel/HeaderProduction/HeaderProductionChapterVM.cs Wed Jan 27 10:55:59 2010 +0100 +++ b/client/src/Iri.Modernisation.Controls/ViewModel/HeaderProduction/HeaderProductionChapterVM.cs Thu Feb 04 16:38:04 2010 +0100 @@ -146,6 +146,18 @@ public delegate void EndedDelegate(); public event EndedDelegate Ended; + public event EventHandler IndexClicked; + public void IndexClick() + { + IndexClicked(this, new EventArgs()); + } + + public event EventHandler EditClicked; + public void EditClick() + { + EditClicked(this, new EventArgs()); + } + } }