@@ -442,6 +442,8 void TMStatistics::resetStatistics() | |||
|
442 | 442 | label_BURST_CWF_F2_nb->setText("-"); |
|
443 | 443 | label_BURST_BP1_F0_nb->setText("-"); |
|
444 | 444 | label_BURST_BP2_F0_nb->setText("-"); |
|
445 | label_BURST_BP1_F1_nb->setText("-"); | |
|
446 | label_BURST_BP2_F1_nb->setText("-"); | |
|
445 | 447 | // |
|
446 | 448 | label_SBM1_CWF_F1_nb->setText("-"); |
|
447 | 449 | label_SBM1_BP1_F0_nb->setText("-"); |
@@ -450,6 +452,8 void TMStatistics::resetStatistics() | |||
|
450 | 452 | label_SBM2_CWF_F2_nb->setText("-"); |
|
451 | 453 | label_SBM2_BP1_F0_nb->setText("-"); |
|
452 | 454 | label_SBM2_BP2_F0_nb->setText("-"); |
|
455 | label_SBM2_BP1_F1_nb->setText("-"); | |
|
456 | label_SBM2_BP2_F1_nb->setText("-"); | |
|
453 | 457 | // |
|
454 | 458 | label_PID_is->setText("-"); |
|
455 | 459 | label_CAT_is->setText("-"); |
@@ -569,7 +573,7 void TMStatistics::updateStatistics(unsi | |||
|
569 | 573 | NORM_CWF_F3_nb = NORM_CWF_F3_nb + 1; |
|
570 | 574 | label_NORM_CWF_F3_nb->setText(QString::number(NORM_CWF_F3_nb)); |
|
571 | 575 | } |
|
572 | if (sid == SID_NORM_CWF_LONG_F3) | |
|
576 | else if (sid == SID_NORM_CWF_LONG_F3) | |
|
573 | 577 | { |
|
574 | 578 | NORM_CWF_LONG_F3_nb = NORM_CWF_LONG_F3_nb + 1; |
|
575 | 579 | label_NORM_CWF_LONG_F3_nb->setText(QString::number(NORM_CWF_LONG_F3_nb)); |
@@ -649,6 +653,16 void TMStatistics::updateStatistics(unsi | |||
|
649 | 653 | BURST_BP2_F0_nb = BURST_BP2_F0_nb + 1; |
|
650 | 654 | label_BURST_BP2_F0_nb->setText(QString::number(BURST_BP2_F0_nb)); |
|
651 | 655 | } |
|
656 | else if (sid == SID_BURST_BP1_F1) | |
|
657 | { | |
|
658 | BURST_BP1_F1_nb = BURST_BP1_F1_nb + 1; | |
|
659 | label_BURST_BP1_F1_nb->setText(QString::number(BURST_BP1_F1_nb)); | |
|
660 | } | |
|
661 | else if (sid == SID_BURST_BP2_F1) | |
|
662 | { | |
|
663 | BURST_BP2_F1_nb = BURST_BP2_F1_nb + 1; | |
|
664 | label_BURST_BP2_F1_nb->setText(QString::number(BURST_BP2_F1_nb)); | |
|
665 | } | |
|
652 | 666 | else if (sid == SID_SBM1_CWF_F1) |
|
653 | 667 | { |
|
654 | 668 | SBM1_CWF_F1_nb = SBM1_CWF_F1_nb + 1; |
@@ -679,6 +693,16 void TMStatistics::updateStatistics(unsi | |||
|
679 | 693 | SBM2_BP2_F0_nb = SBM2_BP2_F0_nb + 1; |
|
680 | 694 | label_SBM2_BP2_F0_nb->setText(QString::number(SBM2_BP2_F0_nb)); |
|
681 | 695 | } |
|
696 | else if (sid == SID_SBM2_BP1_F1) | |
|
697 | { | |
|
698 | SBM2_BP1_F1_nb = SBM2_BP1_F1_nb + 1; | |
|
699 | label_SBM2_BP1_F1_nb->setText(QString::number(SBM2_BP1_F1_nb)); | |
|
700 | } | |
|
701 | else if (sid == SID_SBM2_BP2_F1) | |
|
702 | { | |
|
703 | SBM2_BP2_F1_nb = SBM2_BP2_F1_nb + 1; | |
|
704 | label_SBM2_BP2_F1_nb->setText(QString::number(SBM2_BP2_F1_nb)); | |
|
705 | } | |
|
682 | 706 | else |
|
683 | 707 | { |
|
684 | 708 | incrementUnknown(); |
General Comments 0
You need to be logged in to leave comments.
Login now