wxBeginBusyCursor();
wxWindow *win = CreateAbortWindow(parent, printout);
- wxYield();
+ wxSafeYield(win,true);
if (!win)
{
}
sm_abortWindow = win;
sm_abortWindow->Show(TRUE);
- wxYield();
+ wxSafeYield(win,true);
printout->OnBeginPrinting();
{
GrafPtr thePort ;
GetPort( &thePort ) ;
- wxYield() ;
- SetPort( thePort ) ;
+ wxSafeYield(win,true);
+ SetPort( thePort ) ;
dc->StartPage();
keepGoing = printout->OnPrintPage(pn);