| 388 | } |
| 389 | |
| 390 | void WorldList::installWorld(QFileInfo filename) |
| 391 | { |
| 392 | qDebug() << "installing: " << filename.absoluteFilePath(); |
| 393 | World w(filename); |
| 394 | if(!w.isValid()) |
| 395 | { |
| 396 | return; |
| 397 | } |
| 398 | w.install(m_dir.absolutePath()); |
| 399 | } |
| 400 | |
| 401 | bool WorldList::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, |
| 402 | const QModelIndex &parent) |
no test coverage detected