* @brief Accepts any non-empty model id since the live list may not yet be loaded. */
| 189 | * @brief Accepts any non-empty model id since the live list may not yet be loaded. |
| 190 | */ |
| 191 | void AI::LocalProvider::setCurrentModel(const QString& model) |
| 192 | { |
| 193 | if (model.isEmpty()) |
| 194 | return; |
| 195 | |
| 196 | m_currentModel = model; |
| 197 | } |
| 198 | |
| 199 | //-------------------------------------------------------------------------------------------------- |
| 200 | // Base URL |
no test coverage detected