no symbols are loaded for any call stack frame.THe source code can not be displayed: while debuging

Login to reply to this topic.
Mon, 2008-03-10 09:58
Joined: 2006-12-19
Forum posts: 67

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.
Pls, suggest me how to go about debugging after that and what is causing the msg.

Thanks and regards,
Netrananda

void CRSRadioAppUi::ConstructL()
{
BaseConstructL();

iAppMainView = CRSRadioMainView::NewL();
iAppView1 = CRSRadioView1::NewL();

AddViewL(iAppMainView); // Transfer ownership to base class
AddViewL(iAppView1); // Transfer ownership to base class
SetDefaultViewL(*iAppMainView);

} // execution of this line giving the message

CRSRadioAppUi::CRSRadioAppUi()                             
    {
        // no implementation requi3red
    }

CRSRadioAppUi::~CRSRadioAppUi()
    {
   
    }

// handle any menu commands
void CRSRadioAppUi::HandleCommandL(TInt aCommand)
    {
    switch(aCommand)
        {
        case EEikCmdExit:
        case EAknSoftkeyExit:
            Exit();
            break;
        default:
            Panic(ERSRadioBasicUi);
            break;
        }
    }


Mon, 2008-03-10 10:42
Joined: 2005-11-20
Forum posts: 1058
Missing UIQ3 source

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

Mon, 2008-03-10 11:57
Joined: 2006-12-19
Forum posts: 67
Re: no symbols are loaded for any call stack frame.THe source co

Thanks rbrunner,

I got the point.

Warm Regards,
Netrananda

  • Login to reply to this topic.