---------------------------------------------------------------------------
| 397 | } |
| 398 | //--------------------------------------------------------------------------- |
| 399 | void __fastcall TSetupForm::OnFrameValuesChange(TObject *Sender) |
| 400 | { |
| 401 | if( DrawGrid->Row < 1 ) |
| 402 | return; |
| 403 | int ARow = DrawGrid->Row - 1; |
| 404 | TStorageFile * p = localSFL->Get(ARow); |
| 405 | if( p ) |
| 406 | { |
| 407 | FileFr->FromDialog(p); |
| 408 | DrawGrid->Invalidate(); |
| 409 | } |
| 410 | } |
| 411 | //--------------------------------------------------------------------------- |
| 412 |
nothing calls this directly
no test coverage detected