Ignore:
Timestamp:
Jun 25, 2024, 11:56:51 AM (3 months ago)
Author:
chronos
Message:
  • Modified: Remove U prefix from unit names of PinConnection package.
File:
1 moved

Legend:

Unmodified
Added
Removed
  • PinConnection/CommTelnetComPortOption.pas

    r574 r575  
    1 unit UCommTelnetComPortOption;
    2 
    3 {$mode delphi}{$H+}
     1unit CommTelnetComPortOption;
    42
    53interface
    64
    75uses
    8   Classes, SysUtils, UCommTelnet, USerialPort,
    9   SpecializedList, UBinarySerializer;
     6  Classes, SysUtils, CommTelnet, SerialPort, SpecializedList, UBinarySerializer;
    107
    118type
     
    5855function TTelnetOptionComPort.GetDataBits: TDataBits;
    5956begin
    60 
    6157end;
    6258
    6359function TTelnetOptionComPort.GetDTR: Boolean;
    6460begin
    65 
    6661end;
    6762
    6863function TTelnetOptionComPort.GetFlowControl: TFlowControl;
    6964begin
    70 
    7165end;
    7266
    7367function TTelnetOptionComPort.GetParity: TParity;
    7468begin
    75 
    7669end;
    7770
    7871function TTelnetOptionComPort.GetRTS: Boolean;
    7972begin
    80 
    8173end;
    8274
    8375function TTelnetOptionComPort.GetStopBits: TStopBits;
    8476begin
    85 
    8677end;
    8778
     
    144135procedure TTelnetOptionComPort.SetDataBits(AValue: TDataBits);
    145136begin
    146 
    147137end;
    148138
     
    189179procedure TTelnetOptionComPort.SetParity(AValue: TParity);
    190180begin
    191 
    192181end;
    193182
     
    213202procedure TTelnetOptionComPort.SetStopBits(AValue: TStopBits);
    214203begin
    215 
    216204end;
    217205
     
    223211destructor TTelnetOptionComPort.Destroy;
    224212begin
    225   inherited Destroy;
     213  inherited;
    226214end;
    227215
Note: See TracChangeset for help on using the changeset viewer.