From d2875249ca7972d009d329327101b0e41a5e4d2b Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 28 Sep 2008 10:32:19 +0000 Subject: [PATCH] fix VC9 compilation: interface is #defined as struct in SDK headers, don't use it as variable name git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55930 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- utils/ifacecheck/src/ifacecheck.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) 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 { -- 2.45.2