1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 08:09:32 +02:00

Raphaël Marinier: remove more unnecessary changes of format...

... A search of FFmpeg source code shows that the nonstandard %t format
occurs nowhere in it.
This commit is contained in:
Paul Licameli 2018-01-24 14:04:44 -05:00
parent c6e1665b52
commit 533ca24079

View File

@ -137,9 +137,6 @@ void av_log_wx_callback(void* ptr, int level, const char* fmt, va_list vl)
}
wxString frm(fmt,wxConvLibc);
#if defined(__WXMSW__)
frm.Replace(wxT("%t"),wxT("%i"),true); //TODO: on Windows vprintf won't handle %t, and probably some others. Investigate.
#endif
printstring.Append(wxString::FormatV(frm,vl));
wxString cpt;