]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/htmlwin.cpp
added missing include file for Apple DevTools
[wxWidgets.git] / src / html / htmlwin.cpp
index 6cf959cf5f1bcb788e129e68d1fa204ebb2e5ecd..5166612f44650595026ba56968568a05175526b2 100644 (file)
@@ -214,13 +214,12 @@ bool wxHtmlWindow::AppendToPage(const wxString& source)
 
 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))
     {
@@ -270,8 +269,6 @@ bool wxHtmlWindow::LoadPage(const wxString& location)
         {
             wxLogError(_("Unable to open requested HTML document: %s"), location.c_str());
             m_tmpCanDrawLocks--;
-
-            SetCursor(*wxSTANDARD_CURSOR);
             return FALSE;
         }
 
@@ -336,7 +333,6 @@ bool wxHtmlWindow::LoadPage(const wxString& location)
 
     if (m_OpenedPageTitle == wxEmptyString)
         OnSetTitle(wxFileNameFromPath(m_OpenedPage));
-    SetCursor(*wxSTANDARD_CURSOR);
 
     if (needs_refresh)
     {