no QVector forward declarations with Qt6

This commit is contained in:
Uwe Rathmann 2020-10-23 13:44:29 +02:00
parent 27c4704f68
commit 77c00fb727

View File

@ -10,7 +10,10 @@
#include "QskDialog.h"
class QskPushButton;
template< typename T > class QVector;
#if QT_VERSION < QT_VERSION_CHECK( 6, 0, 0 )
template< typename T > class QVector;
#endif
class QSK_EXPORT QskDialogButtonBox : public QskBox
{