improved support for typedefs

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55734 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-09-19 10:28:47 +00:00
parent dc7f9c9cee
commit 585a11d609
3 changed files with 43 additions and 10 deletions

View File

@@ -306,11 +306,11 @@ int IfaceCheckApp::CompareClasses(const wxClass* iface, const wxClassPtrArray& a
{
wxMethodPtrArray overloads;
// try searching for a method with the same name but with
// try searching for methods with the same name but with
// different return type / arguments / qualifiers
for (unsigned int j=0; j<api.GetCount(); j++)
{
wxMethodPtrArray results = api[j]->FindMethodNamed(m.GetName());
wxMethodPtrArray results = api[j]->FindMethodsNamed(m.GetName());
// append "results" array to "overloads"
WX_APPEND_ARRAY(overloads, results);