Details
-
Bug
-
Resolution: Fixed
-
Not Evaluated
-
Qt Creator 13.0.0
-
None
-
4dc56046e (13.0)
Description
When you select to use the Qt module name in the #include directive in the Qt Class Generation code generation, and then create a class with a ui file, the file automatically generated by the code adds the old Qt module name,
for example:
#include <QtGui/QDialog>,
but,this is incorrect, the current version of Qt6, the correct code should be:
#include <QtWidgets/QDialog>