From: Julian Smart Date: Fri, 15 Aug 2003 09:44:52 +0000 (+0000) Subject: Corrected silly recursion mistake X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/6f4767ace2f93ddbb1bfa649a9db8b2bd7758836?ds=inline Corrected silly recursion mistake git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22910 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/univ/listbox.cpp b/src/univ/listbox.cpp index 2b2ec463e3..33ba2ea3a3 100644 --- a/src/univ/listbox.cpp +++ b/src/univ/listbox.cpp @@ -622,7 +622,7 @@ void wxListBox::OnInternalIdle() m_updateCount = 0; } - OnInternalIdle(); + wxListBoxBase::OnInternalIdle(); } // ----------------------------------------------------------------------------