From: Jouk Jansen Date: Wed, 23 Jan 2013 10:15:15 +0000 (+0000) Subject: let wxCheckListBox get the properties of wxCheckListBoxBase (was wxListBox) for wxGTK... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/3e5f88c6d2cdb2d4b0de4f44146a9839dc55f129 let wxCheckListBox get the properties of wxCheckListBoxBase (was wxListBox) for wxGTK1, just like the other versions of wx git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73434 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/gtk1/checklst.h b/include/wx/gtk1/checklst.h index e96e56a746..305ca0c386 100644 --- a/include/wx/gtk1/checklst.h +++ b/include/wx/gtk1/checklst.h @@ -28,7 +28,7 @@ // wxCheckListBox // ---------------------------------------------------------------------------- -class WXDLLIMPEXP_CORE wxCheckListBox : public wxListBox +class WXDLLIMPEXP_CORE wxCheckListBox : public wxCheckListBoxBase { public: wxCheckListBox(); diff --git a/src/gtk1/checklst.cpp b/src/gtk1/checklst.cpp index bb84a1816d..8f449b93e2 100644 --- a/src/gtk1/checklst.cpp +++ b/src/gtk1/checklst.cpp @@ -22,7 +22,7 @@ // wxCheckListBox //----------------------------------------------------------------------------- -wxCheckListBox::wxCheckListBox() : wxListBox() +wxCheckListBox::wxCheckListBox() : wxCheckListBoxBase() { m_hasCheckBoxes = true; }