bool wxHtmlWindow::LoadPage(const wxString& location)
{
+ wxBusyCursor busyCursor;
+
wxFSFile *f;
bool rt_val;
bool needs_refresh = FALSE;
- SetCursor(*wxHOURGLASS_CURSOR);
- wxYield(); Refresh(FALSE);
-
m_tmpCanDrawLocks++;
if (m_HistoryOn && (m_HistoryPos != -1))
{
{
wxLogError(_("Unable to open requested HTML document: %s"), location.c_str());
m_tmpCanDrawLocks--;
-
- SetCursor(*wxSTANDARD_CURSOR);
return FALSE;
}
if (m_OpenedPageTitle == wxEmptyString)
OnSetTitle(wxFileNameFromPath(m_OpenedPage));
- SetCursor(*wxSTANDARD_CURSOR);
if (needs_refresh)
{