Change wxLongLongFmtSpec to be a non-wide string.

As with other ANSI/Unicode unification changes, we choose to preserve
compatibility with the existing code using wxLongLongFmtSpec in ANSI build
and require people using it in Unicode build to change their code.

Closes #11372.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62562 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-11-05 14:59:55 +00:00
parent 7b611a3ae9
commit 651548666a
7 changed files with 27 additions and 24 deletions

View File

@@ -359,14 +359,14 @@ static const wxChar* gs_uintTemplates32[wxPG_UINT_TEMPLATE_MAX] = {
};
static const wxChar* gs_uintTemplates64[wxPG_UINT_TEMPLATE_MAX] = {
wxT("%") wxLongLongFmtSpec wxT("x"),
wxT("0x%") wxLongLongFmtSpec wxT("x"),
wxT("$%") wxLongLongFmtSpec wxT("x"),
wxT("%") wxLongLongFmtSpec wxT("X"),
wxT("0x%") wxLongLongFmtSpec wxT("X"),
wxT("$%") wxLongLongFmtSpec wxT("X"),
wxT("%") wxLongLongFmtSpec wxT("u"),
wxT("%") wxLongLongFmtSpec wxT("o")
"%" wxLongLongFmtSpec "x",
"0x%" wxLongLongFmtSpec "x",
"$%" wxLongLongFmtSpec "x",
"%" wxLongLongFmtSpec "X",
"0x%" wxLongLongFmtSpec "X",
"$%" wxLongLongFmtSpec "X",
"%" wxLongLongFmtSpec "u",
"%" wxLongLongFmtSpec "o"
};
WX_PG_IMPLEMENT_PROPERTY_CLASS(wxUIntProperty,wxPGProperty,