Qt6: add include files to keep QVectorIterator working

The QVectorIterator is only available in Qt6 when you explicitly add the
include files.

Suggested-by: Thiago Macieira <thiago@macieira.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2022-02-09 17:26:02 -08:00
parent fc66352c3c
commit c3cc3155fc

View file

@ -37,6 +37,8 @@
#include <QStyle> #include <QStyle>
#include <QStyleOptionFocusRect> #include <QStyleOptionFocusRect>
#include <QDebug> #include <QDebug>
#include <QList>
#include <QVector>
#include <cmath> #include <cmath>
struct GroupedLineEdit::Private { struct GroupedLineEdit::Private {