diff -r 97ef988c92c2 -r 25b49d4f1635 src/FingersDance.Control.SessionInput/UserControlListProject.xaml.cs --- a/src/FingersDance.Control.SessionInput/UserControlListProject.xaml.cs Wed Oct 28 13:46:38 2009 +0100 +++ b/src/FingersDance.Control.SessionInput/UserControlListProject.xaml.cs Wed Oct 28 17:07:27 2009 +0100 @@ -25,23 +25,23 @@ public event EventHandler EH_Item_ContactDown; public string SelectedItem = ""; - public UserControlListProject(Dictionary projects) + public UserControlListProject(Dictionary cuttings) { InitializeComponent(); - OpenSessions(projects); + OpenSessions(cuttings); } - private void OpenSessions(Dictionary projects) + private void OpenSessions(Dictionary cuttings) { try { CustomListBoxItem Contener = new CustomListBoxItem(); - Contener.Name = "New Project"; - UserControlCustomLabel l = new UserControlCustomLabel("New Project"); + Contener.Name = "New Cutting"; + UserControlCustomLabel l = new UserControlCustomLabel("New Cutting"); Contener.Content = l; stackPanel.Children.Add(Contener); Contener.ContactTapGesture += Item_ContactTapGesture; - foreach (KeyValuePair elt in projects) + foreach (KeyValuePair elt in cuttings) { Contener = new CustomListBoxItem(); Contener.Name = elt.Key;