mirror of
https://github.com/YACReader/yacreader
synced 2025-07-20 05:54:39 -04:00
corregido error de compilaci?n en gcc>=4.6
This commit is contained in:
@ -952,7 +952,10 @@ void LibraryWindow::loadCovers(const QModelIndex & mi)
|
||||
void LibraryWindow::checkEmptyFolder(QStringList * paths)
|
||||
{
|
||||
if(paths == 0)
|
||||
paths = &dmCV->getPaths(currentPath());
|
||||
{
|
||||
QStringList pathList = dmCV->getPaths(currentPath());
|
||||
paths = &pathList;
|
||||
}
|
||||
|
||||
if(paths->size()>0 && !importedCovers)
|
||||
{
|
||||
|
Reference in New Issue
Block a user