| 515 | } |
| 516 | |
| 517 | void ChessBoard::autoStartTimerIfNeeded() |
| 518 | { |
| 519 | if (m_bIsOver || m_bTimerAutoStarted) |
| 520 | return; |
| 521 | |
| 522 | startGameTimer(); |
| 523 | m_bTimerAutoStarted = true; |
| 524 | } |
| 525 | |
| 526 | void ChessBoard::winMessageBox(QString title, QString msg) |
| 527 | { |
nothing calls this directly
no outgoing calls
no test coverage detected