virtual void RefreshAll();
virtual void SetItemCount(size_t count);
-
#if wxUSE_FILESYSTEM
// retrieve the file system used by the wxHtmlWinParser: if you use
// relative paths in your HTML, you should use its ChangePathTo() method
virtual wxString OnGetItem(size_t n) const
{ return m_items[n]; }
- wxArrayString m_items;
- wxArrayPtrVoid m_HTMLclientData;
+ wxArrayString m_items;
+ wxArrayPtrVoid m_HTMLclientData;
+
// Note: For the benefit of old compilers (like gcc-2.8) this should
// not be named m_clientdata as that clashes with the name of an
// anonymous struct member in wxEvtHandler, which we derive from.