]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/ifacecheck/src/ifacecheck.cpp
improved support for typedefs
[wxWidgets.git] / utils / ifacecheck / src / ifacecheck.cpp
index a8ce9b2bc60799dd428b35ef6f83eed3d293a432..72ecc5226a1cf148a051d3fa5fe61a6562eb3dbb 100644 (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);