Details
Description
- Create a new Qt Widgets Application using a MinGW-based kit.
I used Qt 5.12.1. - Open the project's file "mainwindow.ui"
- In Design mode, place a QPushButton in the MainWindow.
- Right-click the QPushButton and select "Go to slot..." from the context menu.
- Select "clicked()" and click "OK".
- Add some code and a breakpoint into the slot.
- Start debugging the application and click the QPushButton.
The breakpoint is being hit. - In the Locals view, expand "this".
One of it's members is "ui". - Try to expand "ui".
This does not work. Only the Value and Type of the pointer are shown.
It should be possible to list the members of the object pointed to by expanding it. With cdb, this seems to work.