no symbols are loaded for any call stack frame.THe source code can not be displayed: while debuging
| Mon, 2008-03-10 09:58 | |
|
Hi , while debuggin a app am getting the message no symbols are loaded for any call stack frame.THe source code can not be displayed through the message box while the end of contructL() is enounterd. Thanks and regards, void CRSRadioAppUi::ConstructL() iAppMainView = CRSRadioMainView::NewL(); } // execution of this line giving the message CRSRadioAppUi::CRSRadioAppUi() |
|






Forum posts: 1058
I think that's perfectly ok. The constructor of your AppUi is called from somewhere within UIQ3, and you don't have source code for that. If you tell the debugger to continue debugging after ConstructL() returns, you ask it to debug such UIQ3 code where you don't have source on your machine, hence that error message.
That means that you cannot just go through the whole startup of your application step-by-step or better line-by-line, but you have to find out where something happens (in your code) that interests you and set a breakpoint there.
René Brunner
Forum posts: 67
Thanks rbrunner,
I got the point.
Warm Regards,
Netrananda