---------------------------------------------------------------------------
| 370 | } |
| 371 | //--------------------------------------------------------------------------- |
| 372 | void __fastcall TMainForm::TimerTimer(TObject *Sender) |
| 373 | { |
| 374 | if( bFirstTimerTick ) |
| 375 | { |
| 376 | TrayChangeIcon(0); |
| 377 | bFirstTimerTick = false; |
| 378 | } |
| 379 | |
| 380 | // Check for new records, if the protocol is "live" |
| 381 | if( bLive ) |
| 382 | if( in.IsOpen() ) |
| 383 | // limit lines count on: show no more MAX(current_count, MaxGridLinesReceive) lines |
| 384 | Read(false); |
| 385 | |
| 386 | // check LogRotate... |
| 387 | if( fdb ) |
| 388 | fdb->CheckRotate(); |
| 389 | } |
| 390 | //--------------------------------------------------------------------------- |
| 391 | void __fastcall TMainForm::UpdateDislpayInfo(void) |
| 392 | { |
nothing calls this directly
no test coverage detected