Client/Client.cs
changeset 75 2549a8055bd1
parent 72 fd0bb39a7818
child 77 042c1fa136b9
     1.1 --- a/Client/Client.cs	Sat Oct 25 13:35:11 2014 +0200
     1.2 +++ b/Client/Client.cs	Sun Oct 26 16:16:57 2014 +0100
     1.3 @@ -76,19 +76,14 @@
     1.4              Channel.SetLayout(aLayout);
     1.5          }
     1.6  
     1.7 -        public void SetText(DataField aField)
     1.8 +        public void SetField(DataField aField)
     1.9          {
    1.10 -            Channel.SetText(aField);
    1.11 +            Channel.SetField(aField);
    1.12          }
    1.13  
    1.14 -        public void SetTexts(System.Collections.Generic.IList<DataField> aFields)
    1.15 +        public void SetFields(System.Collections.Generic.IList<DataField> aFields)
    1.16          {
    1.17 -            Channel.SetTexts(aFields);
    1.18 -        }
    1.19 -
    1.20 -        public void SetBitmap(DataField aField)
    1.21 -        {
    1.22 -            Channel.SetBitmap(aField);
    1.23 +            Channel.SetFields(aFields);
    1.24          }
    1.25  
    1.26          public int ClientCount()