widgets: fix build using PCH with disabled features
Fix build using PCH when -DFEATURE_abstractbutton=OFF and/or -DFEATURE_abstractslider=OFF Pick-to: 6.8 6.7 6.5 Change-Id: Ifdb8d6454c242cf98f5effcd2708ef797c99a26d Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
This commit is contained in:
parent
91bfa5531a
commit
e54fa3c756
@ -15,9 +15,13 @@
|
||||
#include <qtwidgetsexports.h>
|
||||
#include <qtwidgetsglobal.h>
|
||||
#include <qapplication.h>
|
||||
#include <qabstractbutton.h>
|
||||
#if QT_CONFIG(abstractbutton)
|
||||
# include <qabstractbutton.h>
|
||||
#endif
|
||||
#include <qabstractscrollarea.h>
|
||||
#include <qabstractslider.h>
|
||||
#if QT_CONFIG(abstractslider)
|
||||
# include <qabstractslider.h>
|
||||
#endif
|
||||
#if QT_CONFIG(action)
|
||||
# include <qaction.h>
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user