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..
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..
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
Forum posts: 49
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
Forum posts: 18
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..
Forum posts: 49
Unfortunately I don't have any idea what is that :/
Forum posts: 463
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