From: Vadim Zeitlin Date: Sat, 17 Sep 2011 11:06:15 +0000 (+0000) Subject: Fix format specifiers used for "unsigned long" in wxPG code. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5c79993559a36f918eb95ff59539bb22b491435d Fix format specifiers used for "unsigned long" in wxPG code. "unsigned long" quantities must be formatted using "%l[xou]" and not just "%[xou]" as the latter doesn't work correctly on 64 bit platforms. Closes #13447. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69113 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/propgrid/props.cpp b/src/propgrid/props.cpp index c9a5a6c73e..8698b72728 100644 --- a/src/propgrid/props.cpp +++ b/src/propgrid/props.cpp @@ -474,9 +474,9 @@ wxValidator* wxIntProperty::DoGetValidator() const #define wxPG_UINT_TEMPLATE_MAX 8 static const wxChar* const gs_uintTemplates32[wxPG_UINT_TEMPLATE_MAX] = { - wxT("%x"),wxT("0x%x"),wxT("$%x"), - wxT("%X"),wxT("0x%X"),wxT("$%X"), - wxT("%u"),wxT("%o") + wxT("%lx"),wxT("0x%lx"),wxT("$%lx"), + wxT("%lX"),wxT("0x%lX"),wxT("$%lX"), + wxT("%lu"),wxT("%lo") }; static const char* const gs_uintTemplates64[wxPG_UINT_TEMPLATE_MAX] = {