From: Václav Slavík Date: Tue, 16 Apr 2002 23:03:09 +0000 (+0000) Subject: wxHtmlHistoryItem needs not be wxObject X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/05f9197a346867069e89558a4e663cf54b2fd23b wxHtmlHistoryItem needs not be wxObject git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15180 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/html/htmlwin.cpp b/src/html/htmlwin.cpp index 212d556d99..835b1d48ba 100644 --- a/src/html/htmlwin.cpp +++ b/src/html/htmlwin.cpp @@ -41,7 +41,7 @@ //----------------------------------------------------------------------------- // item of history list -class WXDLLEXPORT wxHtmlHistoryItem : public wxObject +class WXDLLEXPORT wxHtmlHistoryItem { public: wxHtmlHistoryItem(const wxString& p, const wxString& a) {m_Page = p, m_Anchor = a, m_Pos = 0;}