src/FingersDance.Control.UserPanel/UserControlUserPanel.xaml.cs
changeset 229 05aba5def1fc
parent 224 874de6d84a2e
--- a/src/FingersDance.Control.UserPanel/UserControlUserPanel.xaml.cs	Tue Nov 24 12:57:18 2009 +0100
+++ b/src/FingersDance.Control.UserPanel/UserControlUserPanel.xaml.cs	Tue Nov 24 22:08:57 2009 +0100
@@ -54,13 +54,13 @@
 			// Insert code required on object creation below this point.
 		}
 
-        public UserControlUserPanel(int idPar, Color col, Cutting cutPar, String path, String AnnotationOrSearchMode, Project searchedProj)
+        public UserControlUserPanel(int idPar, Cutting cutPar, String path, String AnnotationOrSearchMode, Project searchedProj)
         {
             this.InitializeComponent();
             id = idPar;
             cut = cutPar;
             // We make the syncsrc load the good video and cutting 
-            this.UserControlSyncSource.Load(path, col, cut, AnnotationOrSearchMode, searchedProj);
+            this.UserControlSyncSource.Load(path, cut, AnnotationOrSearchMode, searchedProj);
             UserControlSyncSource.OnSuccessAnnotation += new EventHandler(UserControlSyncSource_OnSuccessAnnotation);
             // We make the menu load the good xml
             UCMenu.MenuXmlFile = (AnnotationOrSearchMode == "Search") ? "menu_search.xml" : "menu.xml";