Changes required after wxUniv merge wxListBox::Number() changed to wxListBox::GetCount()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10782 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
George Tasker
2001-07-02 13:28:14 +00:00
parent 8cb172b4f1
commit 2f8f7c77d3

View File

@@ -224,7 +224,7 @@ ClookUpDlg::ClookUpDlg(wxWindow *parent, wxChar *windowTitle, wxChar *tableName,
pLookUpSelectList->SetSelection(0);
// Make the OK activate by pressing Enter
if (pLookUpSelectList->Number())
if (pLookUpSelectList->GetCount())
pLookUpOkBtn->SetDefault();
else
{
@@ -384,7 +384,7 @@ ClookUpDlg::ClookUpDlg(wxWindow *parent, wxChar *windowTitle, wxChar *tableName,
pLookUpSelectList->SetSelection(0);
// Make the OK activate by pressing Enter
if (pLookUpSelectList->Number())
if (pLookUpSelectList->GetCount())
pLookUpOkBtn->SetDefault();
else
{