diff --git a/ErgometerDoctorApplication/MainClient.cs b/ErgometerDoctorApplication/MainClient.cs index 11fae51..67dde48 100644 --- a/ErgometerDoctorApplication/MainClient.cs +++ b/ErgometerDoctorApplication/MainClient.cs @@ -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; diff --git a/ErgometerDoctorApplication/SessionPanel.cs b/ErgometerDoctorApplication/SessionPanel.cs index 70f20e8..d72a373 100644 --- a/ErgometerDoctorApplication/SessionPanel.cs +++ b/ErgometerDoctorApplication/SessionPanel.cs @@ -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;