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
This commit is contained in:
Jouk Jansen 2013-01-23 10:15:15 +00:00
parent d599097d03
commit 3e5f88c6d2
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@
// wxCheckListBox // wxCheckListBox
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
class WXDLLIMPEXP_CORE wxCheckListBox : public wxListBox class WXDLLIMPEXP_CORE wxCheckListBox : public wxCheckListBoxBase
{ {
public: public:
wxCheckListBox(); wxCheckListBox();

View File

@ -22,7 +22,7 @@
// wxCheckListBox // wxCheckListBox
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
wxCheckListBox::wxCheckListBox() : wxListBox() wxCheckListBox::wxCheckListBox() : wxCheckListBoxBase()
{ {
m_hasCheckBoxes = true; m_hasCheckBoxes = true;
} }