* @brief Processes the downloaded dataset with the help of the already configured filter. */
| 270 | * @brief Processes the downloaded dataset with the help of the already configured filter. |
| 271 | */ |
| 272 | void DatasetHandler::processDataset() { |
| 273 | m_filter->readDataFromFile(m_fileName, m_spreadsheet); |
| 274 | |
| 275 | // set column comments/descriptions, if available |
| 276 | // TODO: |
| 277 | // if (!m_object->isEmpty()) { |
| 278 | // int index = 0; |
| 279 | // const int columnsCount = m_spreadsheet->columnCount(); |
| 280 | // while(m_object->contains(i18n("column_description_%1", index)) && (index < columnsCount)) { |
| 281 | // m_spreadsheet->column(index)->setComment(m_object->value(i18n("column_description_%1", index)).toString()); |
| 282 | // ++index; |
| 283 | // } |
| 284 | // } |
| 285 | } |
nothing calls this directly
no test coverage detected