From 636a3341457f83c0bc18b19c01144943879352a5 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 5 Nov 2009 15:37:48 +0000 Subject: [PATCH] Compilation fix after r62562. Use char*, not wxChar*, for format specification strings. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62563 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/propgrid/props.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/propgrid/props.cpp b/src/propgrid/props.cpp index b727fdb93d..42b192d0a8 100644 --- a/src/propgrid/props.cpp +++ b/src/propgrid/props.cpp @@ -358,7 +358,7 @@ static const wxChar* gs_uintTemplates32[wxPG_UINT_TEMPLATE_MAX] = { wxT("%u"),wxT("%o") }; -static const wxChar* gs_uintTemplates64[wxPG_UINT_TEMPLATE_MAX] = { +static const char* gs_uintTemplates64[wxPG_UINT_TEMPLATE_MAX] = { "%" wxLongLongFmtSpec "x", "0x%" wxLongLongFmtSpec "x", "$%" wxLongLongFmtSpec "x",