use Find, not Member

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26782 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Dimitri Schoolwerth 2004-04-15 11:06:19 +00:00
parent 22d080f35b
commit f01da876d8

View File

@ -211,7 +211,7 @@ wxDialog::~wxDialog()
bool wxDialog::IsModal() const
{
return !wxModelessWindows.Member(this);
return !wxModelessWindows.Find(this);
}
bool wxDialog::IsModalShowing() const