build fix for wxUSE_UNICODE==0

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74964 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Paul Cornett 2013-10-07 16:06:08 +00:00
parent 17e6c3bd54
commit 4d8a4ee70f

View File

@ -633,7 +633,11 @@ static bool ReadAll(wxInputStream *is, wxArrayString& output)
// Notice that wxTextInputStream doesn't work correctly with wxConvAuto
// currently, see #14720, so use the current locale conversion explicitly
// under assumption that any external program should be using it too.
wxTextInputStream tis(*is, " \t", wxConvLibc);
wxTextInputStream tis(*is, " \t"
#if wxUSE_UNICODE
, wxConvLibc
#endif
);
for ( ;; )
{