Changeset 531 for trunk/Log.pas


Ignore:
Timestamp:
Mar 27, 2024, 12:31:14 PM (6 weeks ago)
Author:
chronos
Message:
  • Modified: Code cleanup.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Log.pas

    r468 r531  
    7373    if List.Lines.Count = MaxLines then
    7474      List.Lines.Delete(0);
    75     List.Lines.Add(char(48 + Turn div 100 mod 10) +
    76       char(48 + Turn div 10 mod 10) + char(48 + Turn mod 10) + ' ' + Text);
     75    List.Lines.Add(Char(48 + Turn div 100 mod 10) +
     76      Char(48 + Turn div 10 mod 10) + Char(48 + Turn mod 10) + ' ' + Text);
    7777    PostMessage(List.Handle, WM_VSCROLL, SB_BOTTOM, 0);
    7878    Update;
Note: See TracChangeset for help on using the changeset viewer.