From e3f67c52ee3d32427e024d7d77def55bcb3922f4 Mon Sep 17 00:00:00 2001 From: Mariano Reingart Date: Mon, 29 Sep 2014 04:23:36 +0000 Subject: [PATCH] Fix listctrl base window pointer in wxQT, thanks @seandpagnier git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77936 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/qt/listbox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/listbox.cpp b/src/qt/listbox.cpp index 84f369e3e6..1d63f39a9c 100644 --- a/src/qt/listbox.cpp +++ b/src/qt/listbox.cpp @@ -86,7 +86,7 @@ bool wxListBox::Create(wxWindow *parent, wxWindowID id, { Init(); QListWidgetItem* item; - m_qtListWidget = new wxQtListWidget( parent, this ); + m_qtWindow = m_qtListWidget = new wxQtListWidget( parent, this ); while ( n-- > 0 ) {