unicode compilation fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17210 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-09-15 23:50:03 +00:00
parent 73f6b0b14e
commit b883a5da0c

View File

@@ -1766,7 +1766,7 @@ static void TestMimeFilename()
wxFileType::MessageParameters(fname, _T(""))) )
cmd = _T("<no command available>");
else
cmd = wxString('"') + cmd + '"';
cmd = wxString(_T('"')) + cmd + _T('"');
wxPrintf(_T("To open %s (%s) do %s.\n"),
fname.c_str(), desc.c_str(), cmd.c_str());