---------------------------------------------------------------------------
| 1328 | } |
| 1329 | //--------------------------------------------------------------------------- |
| 1330 | void __fastcall TMainForm::SelectFileCBSelect(TObject *Sender) |
| 1331 | { |
| 1332 | int i = SelectFileCB->ItemIndex; |
| 1333 | if( i == -1 ) |
| 1334 | FileNumber = 0; |
| 1335 | else |
| 1336 | FileNumber = (int)SelectFileCB->Items->Objects[i]; |
| 1337 | FileRotationNumber = 0; |
| 1338 | SetFile(GetFileName(FileNumber)); |
| 1339 | UpdateRotationViewControl(); |
| 1340 | } |
| 1341 | //--------------------------------------------------------------------------- |
| 1342 | void __fastcall TMainForm::aDisplayFilterExecute(TObject *Sender) |
| 1343 | { |
nothing calls this directly
no outgoing calls
no test coverage detected