CONE 44 on emulator..

Login to reply to this topic.
Tue, 2008-01-29 11:28
Joined: 2008-01-29
Forum posts: 18

I am doing one UIQ application..When i click on exit command i am getting CONE 44 panic..CONE 44 means Control being destroyed is still on the control stack..can any one help me out..thanks..


Tue, 2008-01-29 15:07
Joined: 2007-12-19
Forum posts: 49
Re: CONE 44 on emulator..

I dont know how it is in UIQ but in s60 if you put something on control stack you must remove it from there before deletion:

CCoeEnv::Static()->AppUi()->AddToStackL( iPointerToUiComponent );
... // dos something
CCoeEnv::Static()->AppUi()->RemoveFromStack( iPointerToUiComponent );
delete iPointerToUiComponent

Wed, 2008-01-30 10:52
Joined: 2008-01-29
Forum posts: 18
Re: CONE 44 on emulator..

thanks lman....i used PrepareToExit() & RemoveView() ....now that cone 44 is been solved..but know i am getting KERN 8..while closing my application.This panic is raised when queuing an absolute timer to the second queue; the panic occurs when a delta timer is already pending. This is what written in documentation..But i did not get it..Do you what is that?? thanks..

Wed, 2008-01-30 11:01
Joined: 2007-12-19
Forum posts: 49
Re: CONE 44 on emulator..

Unfortunately I don't have any idea what is that :/

Wed, 2008-01-30 14:46
Forum Nokia Champion
Joined: 2006-10-12
Forum posts: 463
Re: CONE 44 on emulator..

Amit,
I dont know UIQ either, but clearly your application has some kind of timer and queue implementation and something is wrong with that...guess thats what the docs are point out Eye-wink

  • Login to reply to this topic.