]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/htmlfilt.cpp
moved bookmarks to Contents panel
[wxWidgets.git] / src / html / htmlfilt.cpp
index 199b91c6c447543c034df30201e3da31599fbfb1..fff367cc458bd0b8a043f3db56f1f6184093eee0 100644 (file)
@@ -141,7 +141,11 @@ wxString wxHtmlFilterHTML::ReadFile(const wxFSFile& file) const
     char *src;
     wxString doc;
 
-    if (s == NULL) return wxEmptyString;
+    if (s == NULL) 
+    {
+        wxLogError(_("Cannot open HTML document: %s"), file.GetLocation().mb_str());
+        return wxEmptyString;
+    }
     src = new char[s -> GetSize() + 1];
     src[s -> GetSize()] = 0;
     s -> Read(src, s -> GetSize());