Server/MainForm.cs
changeset 225 6ccaa430aa23
parent 223 f6272f65d8fc
     1.1 --- a/Server/MainForm.cs	Wed Jul 27 17:09:10 2016 +0200
     1.2 +++ b/Server/MainForm.cs	Thu Jul 28 19:32:40 2016 +0200
     1.3 @@ -1575,9 +1575,9 @@
     1.4          /// </summary>
     1.5          private void StartIdleClient(string aTopText = "", string aBottomText = "")
     1.6          {
     1.7 -            Thread clientThread = new Thread(SharpDisplayIdleClient.Program.MainWithParams);
     1.8 -            SharpDisplayIdleClient.StartParams myParams =
     1.9 -                new SharpDisplayIdleClient.StartParams(new Point(this.Right, this.Top), aTopText, aBottomText);
    1.10 +            Thread clientThread = new Thread(SharpDisplayClientIdle.Program.MainWithParams);
    1.11 +            SharpDisplayClientIdle.StartParams myParams =
    1.12 +                new SharpDisplayClientIdle.StartParams(new Point(this.Right, this.Top), aTopText, aBottomText);
    1.13              clientThread.Start(myParams);
    1.14              BringToFront();
    1.15          }