void CTestAudioContainer::WriteSomeText()
{
CFont* fontUsed = (CFont*)iEikonEnv->TitleFont();
iBmpGc->UseFont(fontUsed);
iBmpGc->SetPenColor(KRgbBlack);
TPoint pos(50,50);
_LIT(KExampleText,"Hello");
iBmpGc->DrawText(KExampleText,pos);
DrawDeferred();
}
If i call this from a handled event with:
iTestAudioContainer->WriteSomeText();
I thought it would write the text, but in fact nothing happens (no error or anything, just nothing). Can anyone see from that what i'm doing wrong?
cheers




