Fix copy paste error.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2020-01-07 12:55:45 +02:00
parent 0e12e9f9fb
commit 21d6a85678

View File

@ -513,7 +513,7 @@ QVector<T> VLayoutPiece::Map(QVector<T> points) const
if (d->mirror) if (d->mirror)
{ {
#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0) #if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0)
auto list = QList<T>(p.begin(), p.end()); auto list = QList<T>(points.begin(), points.end());
#else #else
QList<T> list = points.toList(); QList<T> list = points.toList();
#endif #endif