Changeset 431 for trunk/LocalPlayer/Nego.pas
- Timestamp:
- Apr 28, 2022, 10:40:37 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LocalPlayer/Nego.pas
r417 r431 75 75 procedure Start; // next turn of negotiation 76 76 procedure OffscreenPaint; override; 77 procedure ShowNewContent(NewMode: integer);77 procedure ShowNewContent(NewMode: TWindowMode); 78 78 79 79 private … … 192 192 end; 193 193 194 procedure TNegoDlg.ShowNewContent(NewMode: integer);194 procedure TNegoDlg.ShowNewContent(NewMode: TWindowMode); 195 195 begin 196 196 inherited ShowNewContent(NewMode); … … 648 648 if (X >= xNationPicture0) and (X < xNationPicture0 + 64) and 649 649 (Y >= yNationPicture) and (Y < yNationPicture + 48) then 650 NatStatDlg.ShowNewContent( FWindowMode or wmPersistent, DipMem[me].pContact)650 NatStatDlg.ShowNewContent(WindowModePersistent(FWindowMode), DipMem[me].pContact) 651 651 else if (X >= xNationPicture1) and (X < xNationPicture1 + 64) and 652 652 (Y >= yNationPicture) and (Y < yNationPicture + 48) then 653 NatStatDlg.ShowNewContent( FWindowMode or wmPersistent, me)653 NatStatDlg.ShowNewContent(WindowModePersistent(FWindowMode), me) 654 654 end; 655 655
Note:
See TracChangeset
for help on using the changeset viewer.