* @brief Changes the name of the downloaded file. */
| 187 | * @brief Changes the name of the downloaded file. |
| 188 | */ |
| 189 | void Downloader::setFileName(const QString& file) |
| 190 | { |
| 191 | m_fileName = file; |
| 192 | |
| 193 | if (m_fileName.isEmpty()) |
| 194 | m_fileName = "QSU_Update.bin"; |
| 195 | } |
| 196 | |
| 197 | /** |
| 198 | * @brief Changes the user-agent string used to communicate with the remote |
no test coverage detected