mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Move QAction to QtGui on Qt6
Reference: - https://doc.qt.io/qt-6/widgets-changes-qt6.html#qaction-qactiongroup
This commit is contained in:
parent
fa31c57dc9
commit
e7b89e61e8
|
@ -107,7 +107,11 @@
|
|||
# include <QWidget>
|
||||
# include <QtCore/QVariant>
|
||||
# include <QtGlobal>
|
||||
# include <QtWidgets/QAction>
|
||||
# if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||
# include <QtGui/QAction>
|
||||
# else
|
||||
# include <QtWidgets/QAction>
|
||||
# endif
|
||||
# include <QtWidgets/QApplication>
|
||||
# include <QtWidgets/QButtonGroup>
|
||||
# include <QtWidgets/QDialog>
|
||||
|
|
Loading…
Reference in a new issue