Skip to content

GUI: fix qt6 transition

Mikhail Svechnikov requested to merge fix_qt6_transition into main

This resolves #327 (closed)

For the transition to Qt6 the construction

QVector::fromStdVector(stdvec)

was replaced by

QVector(stdvec.begin(),stdvec.end())

It turned out that they are not fully equivalent, I don't know why.

Edited by Mikhail Svechnikov

Merge request reports