fix wxExecute() compilation in ANSI build

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52773 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-03-24 23:13:12 +00:00
parent d2aa927a57
commit d7ef641d4e
3 changed files with 14 additions and 2 deletions

View File

@@ -1035,7 +1035,11 @@ long wxExecute(char **argv, int flags, wxProcess *handler)
return wxExecuteImpl(argv, flags, handler);
}
#if wxUSE_UNICODE
long wxExecute(wchar_t **argv, int flags, wxProcess *handler)
{
return wxExecuteImpl(argv, flags, handler);
}
#endif // wxUSE_UNICODE