From: Vadim Zeitlin Date: Sun, 1 Jun 2008 14:13:33 +0000 (+0000) Subject: another compilation fix, now for Unicode build X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9aa7bedbb56ded90735fb2e4584309f439a78bf9 another compilation fix, now for Unicode build git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53899 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/utils/ifacecheck/src/xmlparser.cpp b/utils/ifacecheck/src/xmlparser.cpp index 2209075bd6..7b29c794ff 100644 --- a/utils/ifacecheck/src/xmlparser.cpp +++ b/utils/ifacecheck/src/xmlparser.cpp @@ -520,7 +520,7 @@ bool getMemberIDs(wxClassMemberIdHashMap* map, wxClass* p, const wxStringCharTyp while (curpos < end) { // curpos always points to the underscore of the next token to parse: -#if wxUSE_UNICODE_UTF8 +#if wxUSE_UNICODE_WCHAR unsigned long id = wcstoul(curpos+1, &nexttoken, GCCXML_BASE); #else unsigned long id = strtoul(curpos+1, &nexttoken, GCCXML_BASE);