git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52765
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
} else {
+ // shorten the name of the header so the log file is more readable
+ wxString header = interface[i].GetHeader().AfterLast('/');
+
LogMessage("%s: couldn't find the real interface for the '%s' class",
- interface[i].GetHeader(), cname);
+ header, cname);
ccount++;
}
}
LogWarning("%s: the method '%s' of classes '%s' has a different signature%s",
header, tofind, searchedclasses, tmp);
+ count++;
// try to modify it!
if (m_modify)
// helper macros
#define LogMessage(fmt, ...) { wxPrintf(fmt "\n", __VA_ARGS__); fflush(stdout); }
-#define LogWarning(fmt, ...) { wxPrintf("WARNING: " fmt "\n", __VA_ARGS__); fflush(stdout); }
+#define LogWarning(fmt, ...) { wxPrintf(fmt "\n", __VA_ARGS__); fflush(stdout); }
#define LogError(fmt, ...) { wxPrintf("ERROR: " fmt "\n", __VA_ARGS__); fflush(stdout); }
#define wxPrint(str) { wxPrintf(str); fflush(stdout); }