From 9dc66f532fbfdc7e0fc4904d18ff405f90e1b3eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20A=CC=81ngel=20San=20Marti=CC=81n=20Rodri=CC=81guez?= Date: Tue, 25 Oct 2022 08:51:52 +0200 Subject: [PATCH] boolean -> bool --- YACReaderLibrary/db/folder_model.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/YACReaderLibrary/db/folder_model.cpp b/YACReaderLibrary/db/folder_model.cpp index aa99ab72..73fe13b6 100644 --- a/YACReaderLibrary/db/folder_model.cpp +++ b/YACReaderLibrary/db/folder_model.cpp @@ -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 &iteration) + const std::function &iteration) { if (index.isValid()) { auto continueIterating = iteration(index);