| 337 | } |
| 338 | |
| 339 | void WorldList::installWorld(QFileInfo filename) |
| 340 | { |
| 341 | qDebug() << "installing: " << filename.absoluteFilePath(); |
| 342 | World w(filename); |
| 343 | if(!w.isValid()) |
| 344 | { |
| 345 | return; |
| 346 | } |
| 347 | w.install(m_dir.absolutePath()); |
| 348 | } |
| 349 | |
| 350 | bool WorldList::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, |
| 351 | const QModelIndex &parent) |
no test coverage detected