> How do I get "base.OnInit()" to call wxApp::OnInit()? The obvious, but
> wrong, solution would be to have base:OnInit() call an unmanaged C
> function like this:
> 
>    bool _App_OnInit(wxApp* theApp) 
>    {
>       return theApp->OnInit();
>    }

Maybe like so:

bool _App_OnInit(wxApp* theApp) 
{
   return theApp->wxApp::OnInit();
}

(maybe this isn't portable ?)

cheers,
Thomas


Thomas Stolwijk
mailto:[EMAIL PROTECTED] 
http://www.thomas-stolwijk.com 




_______________________________________________
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list

Reply via email to