diff --git a/utils/ifacecheck/src/ifacecheck.cpp b/utils/ifacecheck/src/ifacecheck.cpp index e69414ad33..b12583d9d3 100644 --- a/utils/ifacecheck/src/ifacecheck.cpp +++ b/utils/ifacecheck/src/ifacecheck.cpp @@ -200,39 +200,39 @@ void IfaceCheckApp::ShowProgress() bool IfaceCheckApp::Compare() { - const wxClassArray& interface = m_doxyInterface.GetClasses(); + const wxClassArray& interfaces = m_doxyInterface.GetClasses(); const wxClass* c; wxClassPtrArray api; int mcount = 0, ccount = 0; LogMessage("Comparing the interface API to the real API (%d classes to compare)...", - interface.GetCount()); + interfaces.GetCount()); if (!m_strToMatch.IsEmpty()) LogMessage("Processing only header files matching '%s' expression.", m_strToMatch); - for (unsigned int i=0; i0) { // there is a class with exactly the same name! - mcount += CompareClasses(&interface[i], api); + mcount += CompareClasses(&interfaces[i], api); } else {