Changeset 56224 for wxWidgets/trunk/utils/ifacecheck/src/ifacecheck.cpp
- Timestamp:
- 10/10/08 15:51:26 (3 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
wxWidgets/trunk/utils/ifacecheck/src/ifacecheck.cpp
r56188 r56224 302 302 real = api->RecursiveUpwardFindMethod(m, &m_gccInterface); 303 303 304 if ( real)304 if (!real) 305 305 { 306 306 bool exit = false; … … 344 344 "'%s' all with different signatures:\n", 345 345 overloads.GetCount(), m.GetName(), api->GetName()); 346 else 346 else { 347 347 warning += wxString::Format(": in the real headers there is a method '%s' for '%s'" 348 348 " but has different signature:\n", 349 349 m.GetName(), api->GetName()); 350 } 350 351 351 352 // get a list of the prototypes with _all_ possible attributes:
