boolean -> bool

This commit is contained in:
Luis Ángel San Martín Rodríguez 2022-10-25 08:51:52 +02:00
parent 02df90f3bd
commit 9dc66f532f

View File

@ -218,7 +218,7 @@ QModelIndex FolderModel::index(int row, int column, const QModelIndex &parent)
void iterate(const QModelIndex &index,
const QAbstractItemModel *model,
const std::function<boolean(const QModelIndex &)> &iteration)
const std::function<bool(const QModelIndex &)> &iteration)
{
if (index.isValid()) {
auto continueIterating = iteration(index);