| 188 | } |
| 189 | |
| 190 | void AutoUpdaterDialog::httpPollTimerPoll() |
| 191 | { |
| 192 | pxAssert(m_http); |
| 193 | m_http->PollRequests(); |
| 194 | |
| 195 | if (!m_http->HasAnyRequests()) |
| 196 | { |
| 197 | Console.WriteLn("(AutoUpdaterDialog) All HTTP requests done."); |
| 198 | m_http_poll_timer->stop(); |
| 199 | } |
| 200 | } |
| 201 | |
| 202 | void AutoUpdaterDialog::queueUpdateCheck(bool display_message) |
| 203 | { |
nothing calls this directly
no test coverage detected