Clients/Idle/Program.cs
changeset 191 7ada476f3fd7
parent 189 bedae992f4ee
child 193 317fdfa4fbb6
     1.1 --- a/Clients/Idle/Program.cs	Wed Feb 03 13:02:48 2016 +0100
     1.2 +++ b/Clients/Idle/Program.cs	Wed Feb 03 13:20:16 2016 +0100
     1.3 @@ -39,7 +39,7 @@
     1.4  
     1.5              Application.EnableVisualStyles();
     1.6              Application.SetCompatibleTextRenderingDefault(false);
     1.7 -            Application.Run(new FormIdleClient());
     1.8 +            Application.Run(new FormClientIdle());
     1.9          }
    1.10  
    1.11          [STAThread]
    1.12 @@ -50,7 +50,7 @@
    1.13  
    1.14              Application.EnableVisualStyles();
    1.15              Application.SetCompatibleTextRenderingDefault(false);
    1.16 -            FormIdleClient form = new FormIdleClient();
    1.17 +            FormClientIdle form = new FormClientIdle();
    1.18              form.Params = (StartParams)aParams;
    1.19              Application.Run(form);
    1.20          }