[SOLVED] Qt Creator and debugging Qt sources
-
I have the simple code like this (the environment like in my first post):
@
#include <QApplication>
#include <QLabel>int main(int argc, char *argv[])
{
QApplication a(argc, argv);QLabel* label = new QLabel(); label->setText("TEST"); label->show(); return a.exec();
}
@I put the break point on the line
@
label->setText("TEST");
@
and it stops there successfully. Then I would like to step into to the setText() method but Qt Creator does not see the Qt sources. -
Oh I see. Well, my first advice would be to read "this":http://stackoverflow.com/questions/5049578/need-to-step-into-qt-sources-my-ide-is-qt-creator and "this":http://stackoverflow.com/questions/3395048/how-to-see-qt-source-code-while-coding-by-qt-creator . I followed these steps and I never encountered your problem.