fixed some build issues

This commit is contained in:
Luis Ángel San Martín
2013-10-05 12:55:14 +02:00
parent 05944c16d7
commit f29b530f23
9 changed files with 322 additions and 464 deletions

View File

@ -1418,6 +1418,16 @@ void LibraryWindow::showProperties()
void LibraryWindow::showComicVineScraper()
{
QModelIndexList indexList = getSelectedComics();
QList<ComicDB> comics = dmCV->getComics(indexList);
ComicDB c = comics[0];
_comicIdEdited = c.id;//static_cast<TableItem*>(indexList[0].internalPointer())->data(4).toULongLong();
comicVineDialog->databasePath = dm->getDatabase();
comicVineDialog->basePath = currentPath();
comicVineDialog->setComics(comics);
comicVineDialog->show();
}