From 5cef2f6505126d03e675e3288bc9dffcb37184a3 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 25 Jan 2011 05:03:17 +0000 Subject: [PATCH] Add wxRTTI macros for the wxSimpleHtmlListBox class git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66751 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/htmllbox.h | 1 + src/generic/htmllbox.cpp | 3 +++ 2 files changed, 4 insertions(+) diff --git a/include/wx/htmllbox.h b/include/wx/htmllbox.h index 45a1765b58..f610b8383f 100644 --- a/include/wx/htmllbox.h +++ b/include/wx/htmllbox.h @@ -199,6 +199,7 @@ private: class WXDLLIMPEXP_HTML wxSimpleHtmlListBox : public wxHtmlListBox, public wxItemContainer { + DECLARE_ABSTRACT_CLASS(wxSimpleHtmlListBox) public: // wxListbox-compatible constructors // --------------------------------- diff --git a/src/generic/htmllbox.cpp b/src/generic/htmllbox.cpp index 2bc89731c1..bf063faeae 100644 --- a/src/generic/htmllbox.cpp +++ b/src/generic/htmllbox.cpp @@ -599,6 +599,9 @@ void wxHtmlListBox::OnLeftDown(wxMouseEvent& event) // wxSimpleHtmlListBox // ---------------------------------------------------------------------------- +IMPLEMENT_ABSTRACT_CLASS(wxSimpleHtmlListBox, wxHtmlListBox) + + bool wxSimpleHtmlListBox::Create(wxWindow *parent, wxWindowID id, const wxPoint& pos, const wxSize& size,