// accepts an additional argument which tells to which frame the output should
// be directed
-void wxLogStatus(wxFrame *pFrame, const wxChar *szFormat, va_list argptr)
+void wxVLogStatus(wxFrame *pFrame, const wxChar *szFormat, va_list argptr)
{
wxString msg;
{
va_list argptr;
va_start(argptr, szFormat);
- wxLogStatus(pFrame, szFormat, argptr);
+ wxVLogStatus(pFrame, szFormat, argptr);
va_end(argptr);
}