| 577 | } |
| 578 | |
| 579 | QVector<int> MainWindow::getFan1TempValues() const { |
| 580 | QVector<int> fan1TempSettings; |
| 581 | |
| 582 | fan1TempSettings.push_back(ui->fan1Speed2TempSpinBox->value()); |
| 583 | fan1TempSettings.push_back(ui->fan1Speed3TempSpinBox->value()); |
| 584 | fan1TempSettings.push_back(ui->fan1Speed4TempSpinBox->value()); |
| 585 | fan1TempSettings.push_back(ui->fan1Speed5TempSpinBox->value()); |
| 586 | fan1TempSettings.push_back(ui->fan1Speed6TempSpinBox->value()); |
| 587 | fan1TempSettings.push_back(ui->fan1Speed7TempSpinBox->value()); |
| 588 | |
| 589 | return fan1TempSettings; |
| 590 | } |
| 591 | |
| 592 | QVector<int> MainWindow::getFan2TempValues() const { |
| 593 | QVector<int> fan2TempSettings; |
nothing calls this directly
no outgoing calls
no test coverage detected