Skip to content

Commit e421274

Browse files
author
Mick Elliot
committed
fix minor error in paintingwidget for mac
1 parent 9c82dfc commit e421274

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gui/paintingwidget.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ void BoxBlurWorker::go()
469469
#ifndef Q_OS_MACOS
470470
std::for_each(std::execution::par, iota.begin(), iota.end(), [&](size_t & id) {
471471
#else
472-
QtConcurrent::blockingMap(iota.begin(), iota.end(), [&](size_t & idx) {
472+
QtConcurrent::blockingMap(iota.begin(), iota.end(), [&](size_t & id) {
473473
#endif
474474
++count;
475475
size_t newPc = 100 * count / m_data->selectedPointCount();

0 commit comments

Comments
 (0)