This commit is contained in:
2015-10-20 16:03:10 +02:00
parent 1c0028be4f
commit 33a5ffe7af
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -247,7 +247,7 @@ namespace ErgometerDoctorApplication
thread.Start();
}
public static void StartOldCLient(string name, int session)
public static void StartOldClient(string name, int session)
{
if (IsSessionRunning(session))
return;
+1 -1
View File
@@ -63,7 +63,7 @@ namespace ErgometerDoctorApplication
if(IsNew)
MainClient.StartNewClient(Name, Session);
else
MainClient.StartOldCLient(Name, Session);
MainClient.StartOldClient(Name, Session);
}
public System.Windows.Forms.Label labelName;