TechDraw: fix Qt5 compatibility
emplace_back was added in Qt6, replace by append which does the same thing.
This commit is contained in:
committed by
Kacper Donat
parent
c497a583ca
commit
2dcc351532
@@ -246,7 +246,7 @@ QList<QGIViewPart*> QGIProjGroup::secondaryQViews() const
|
||||
if (!qview) {
|
||||
continue;
|
||||
}
|
||||
result.emplace_back(qview);
|
||||
result.append(qview);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user