---------------------------------------------------------------------------
| 1340 | } |
| 1341 | //--------------------------------------------------------------------------- |
| 1342 | void __fastcall TMainForm::aDisplayFilterExecute(TObject *Sender) |
| 1343 | { |
| 1344 | FilterForm = new TFilterForm(this); |
| 1345 | FilterForm->MessMatchFr->ToDialog(&MessMatch); |
| 1346 | if( FilterForm->ShowModal() == mrOk ) |
| 1347 | { |
| 1348 | FilterForm->MessMatchFr->FromDialog(&MessMatch); |
| 1349 | ApplyFilter(); |
| 1350 | } |
| 1351 | delete FilterForm; |
| 1352 | } |
| 1353 | //--------------------------------------------------------------------------- |
| 1354 | void __fastcall TMainForm::ClearFilterButton2Click(TObject *Sender) |
| 1355 | { |
nothing calls this directly
no test coverage detected