mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
Fix scopes
This commit is contained in:
parent
7ccb338455
commit
2d3888b4b4
@ -716,13 +716,14 @@ void FolderModelProxy::setupFilteredModelData()
|
||||
queryString += " AND f.id <> 1 ORDER BY f.parentId,f.name";
|
||||
QLOG_ERROR() << "not implemented";
|
||||
break;
|
||||
|
||||
selectQuery.prepare(queryString.c_str());
|
||||
result.bindValues(selectQuery);
|
||||
}
|
||||
} catch (const std::exception &e) {
|
||||
QLOG_ERROR() << "Unable to parse query: " << e.what();
|
||||
}
|
||||
|
||||
selectQuery.prepare(queryString.c_str());
|
||||
selectQuery.bindValues(selectQuery);
|
||||
|
||||
selectQuery.exec();
|
||||
QLOG_DEBUG() << selectQuery.lastError() << "--";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user