PDA

View Full Version : How to step into Qt API when using Qt-creator to debug my program on linux.



lvhuat
28th April 2013, 04:58
hello everyone!
I would like to step into code of Qt resourse when i debuging my program just like QWidget::keyPressEvent() and QObject::objectName(),etc.
I have configure my Qt with ./configure -debug ,but it still doesn't work.
what should i do.

ChrisW67
28th April 2013, 23:21
A Qt resource, the result of running qrc on your *.qrc files, contains very little code: one routine to register the resource, and one to clean up (both one-liners), and a bunch of static data structures. What are you hoping to achieve?