From: Vadim Zeitlin Date: Wed, 21 Dec 2005 01:23:17 +0000 (+0000) Subject: compilation test for Unicode build X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/423d529ccb0dc5f8d8b41598581723159f07bb52?ds=inline compilation test for Unicode build git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36510 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/tests/archive/archivetest.cpp b/tests/archive/archivetest.cpp index 379950a5d5..4550f7b9af 100644 --- a/tests/archive/archivetest.cpp +++ b/tests/archive/archivetest.cpp @@ -1177,7 +1177,7 @@ int TestId::m_seed = 6219; string TestId::MakeId() { m_seed = (m_seed * 171) % 30269; - return wxString::Format(_T("%-6d"), m_seed).mb_str(); + return (const char *)wxString::Format(_T("%-6d"), m_seed).mb_str(); }