fix for compilation without WXWIN_COMPATIBILITY_2_2

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10759 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2001-07-02 09:53:59 +00:00
parent 32d50c82ec
commit c4c928018d
2 changed files with 2 additions and 2 deletions

View File

@ -647,7 +647,7 @@ void wxListBox::Clear()
{
wxCHECK_RET( m_list != NULL, wxT("invalid listbox") );
gtk_list_clear_items( m_list, 0, Number() );
gtk_list_clear_items( m_list, 0, GetCount() );
if ( HasClientObjectData() )
{

View File

@ -647,7 +647,7 @@ void wxListBox::Clear()
{
wxCHECK_RET( m_list != NULL, wxT("invalid listbox") );
gtk_list_clear_items( m_list, 0, Number() );
gtk_list_clear_items( m_list, 0, GetCount() );
if ( HasClientObjectData() )
{