---------------------------------------------------------------------------
| 82 | } |
| 83 | //--------------------------------------------------------------------------- |
| 84 | void __fastcall TProcessForm::UpButtonClick(TObject *Sender) |
| 85 | { |
| 86 | if( DrawGrid->RowCount < 3 ) |
| 87 | return; |
| 88 | if( DrawGrid->Row == 1 ) |
| 89 | return; |
| 90 | int ARow = DrawGrid->Row - 1; |
| 91 | localPRL->Exchange(ARow, ARow - 1); |
| 92 | DrawGrid->Row = DrawGrid->Row - 1; |
| 93 | DrawGrid->Invalidate(); |
| 94 | } |
| 95 | //--------------------------------------------------------------------------- |
| 96 | void __fastcall TProcessForm::DownButtonClick(TObject *Sender) |
| 97 | { |
nothing calls this directly
no outgoing calls
no test coverage detected