QtCreator qt5printers
-
I am using Qt Creator 9.0.2 based on Qt 6.4.2 on Bookworm. The version of Qt I am using is Qt 5.15.8. In debug mode, I was unable to see the values of Qt data structures (QString, QVariant, QList, etc.). I downloaded the Qt5Printers and, after selecting the options in the Qt Creator (Load system GDB pretty printers), everything works now, except for QVariant. What could be the issue?
i see QList, QString but for QVariant in debug window i have : QVariant <not accessible>
-
@Willer75 The pretty printers heavily depend on the internal memory layout of the objects, and this layout changes at least on major upgrades like Qt5 -> Qt6. Sometimes, while fixing code for newer Qt versions, the printers break for older versions (unfortunately).
So what you could try is to use the latest Creator version 16.x, and if that does not work you could file a bugreport.
Regards