removed current cover indicator from 'flow'

enabled volume search in comic vine dialog
This commit is contained in:
Luis Ángel San Martín
2013-10-06 18:13:27 +02:00
parent e8a97230f5
commit b88715e26e
6 changed files with 176 additions and 30 deletions

View File

@ -116,6 +116,15 @@ QString ComicDB::getTitleOrPath()
return QFileInfo(path).fileName();
}
QString ComicDB::getParentFolderName()
{
QStringList paths = path.split('/');
if(paths.length()<2)
return "";
else
return paths[paths.length()-2];
}
//-----------------------------------------------------------------------------
//COMIC_INFO-------------------------------------------------------------------
//-----------------------------------------------------------------------------