Server/Servers.cs
changeset 43 86aad774b532
parent 34 59bfa4ebcbbb
child 55 b5ed2e29be23
     1.1 --- a/Server/Servers.cs	Fri Aug 22 10:55:34 2014 +0200
     1.2 +++ b/Server/Servers.cs	Fri Aug 22 22:48:30 2014 +0200
     1.3 @@ -40,15 +40,15 @@
     1.4          }
     1.5          
     1.6          //From IDisplayService
     1.7 -        public void SetTexts(System.Collections.Generic.IList<string> aTexts)
     1.8 +        public void SetTexts(System.Collections.Generic.IList<TextField> aTextFields)
     1.9          {
    1.10 -            Program.iMainForm.SetTextsThreadSafe(SessionId, aTexts);
    1.11 +            Program.iMainForm.SetTextsThreadSafe(SessionId, aTextFields);
    1.12          }
    1.13  
    1.14          //
    1.15 -        public void SetText(int aLineIndex, string aText)
    1.16 +        public void SetText(TextField aTextField)
    1.17          {
    1.18 -            Program.iMainForm.SetTextThreadSafe(SessionId, aLineIndex, aText);
    1.19 +            Program.iMainForm.SetTextThreadSafe(SessionId, aTextField);
    1.20          }
    1.21  
    1.22          //