X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d3017584ba511936444abd5a2400e0519f35416f..6d3ef2255e608c68954a61323176856332086368:/src/generic/htmllbox.cpp diff --git a/src/generic/htmllbox.cpp b/src/generic/htmllbox.cpp index 4bbcf8399b..5cc120f75c 100644 --- a/src/generic/htmllbox.cpp +++ b/src/generic/htmllbox.cpp @@ -28,6 +28,8 @@ #include "wx/dcclient.h" #endif //WX_PRECOMP +#if wxUSE_HTML + #include "wx/htmllbox.h" #include "wx/html/htmlcell.h" @@ -240,6 +242,7 @@ void wxHtmlListBox::CacheItem(size_t n) const self->m_htmlParser = new wxHtmlWinParser; m_htmlParser->SetDC(new wxClientDC(self)); + m_htmlParser->SetFS(&self->m_filesystem); } wxHtmlContainerCell *cell = (wxHtmlContainerCell *)m_htmlParser-> @@ -315,3 +318,4 @@ wxCoord wxHtmlListBox::OnMeasureItem(size_t n) const return cell->GetHeight() + cell->GetDescent() + 4; } +#endif