EUSER-CBASE 90

Login to reply to this topic.
Tue, 2005-04-19 12:49
Joined: 2005-04-19
Forum posts: 24
Kia ora,

Can some kind soul point in the right direction to solve this annoying error.

"""

Program closed:
<app name />
E32USER-Cbase 90

"""

It appears when the following is added to the AppUi.cpp file of the application

Code:
BaseConstructL();

CMivisSplashView* splashView = CMivisSplashView::NewLC();    
AddViewL(splashView);
CleanupStack::Pop(splashView);

CMivisCamView* camView = CMivisCamView::NewLC();
AddViewL( camView );
CleanupStack::Pop(camView);

CMivisAudioView* audioView = CMivisAudioView::NewLC();
AddViewL(audioView);
CleanupStack::Pop(audioView);

SetDefaultViewL(*splashView);

It only occurs if the " audioView " section is added. That section is currently just an empty 'shell' with no controls or anything of interest happening there.

Any help would be greatly appreciated.

Nga mihi,

E kore koe e ngaro taku reo rangatira


Tue, 2005-04-19 13:29
Joined: 2003-05-08
Forum posts: 135
EUSER-CBASE 90
Quote
Introduced in 6.0: The panic is raised as a result of a call to the Pop() and PopAndDestroy() static member functions of the CleanupStack class. The panic occurs when an the item to be popped is not the expected item.

The box said 'Windows 98 or better'. Why is it not working on Linux?

Tue, 2005-04-19 13:46
Joined: 2005-04-19
Forum posts: 24
EUSER-CBASE 90
Kia ora cfm,

Thanks for that ... I'm having the 1am in the morning DUH i should have known that moment Shocked)

For those who find this post via searching it was because i had writing (in my code)

CMivisAudioView::NewL();

instead of

CMivisAudioView::NewLC();

Which i did put in at the start of this post ... (mental note - GO TO BED!).

Nga mihi nui,

E kore koe e ngaro taku reo rangatira

  • Login to reply to this topic.