hi, in document class of an application, we define CreateAppUiL() as below:
CEikAppUi* CHelloGuiDocument::CreateAppUiL()
{
return new(ELeave) CHelloGuiAppUi;
}
As seen, we don’t pass this reference of this object to the app ui class. Then, how does the app ui class know about the document object?
thanks for all...

Reply With Quote

