From: Václav Slavík Date: Thu, 27 Dec 2001 23:16:37 +0000 (+0000) Subject: fixed bug in wxHTML that certainly prevented it from working with most web servers X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7ee7772018162bc36d0c6dc06949e72d250e2af0?ds=inline fixed bug in wxHTML that certainly prevented it from working with most web servers git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13204 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/html/htmlfilt.cpp b/src/html/htmlfilt.cpp index b28da27368..9c412c1f7b 100644 --- a/src/html/htmlfilt.cpp +++ b/src/html/htmlfilt.cpp @@ -158,7 +158,7 @@ wxString wxHtmlFilterHTML::ReadFile(const wxFSFile& file) const { wxString s(_T(""); - return s; + return s+doc; } return doc;