improved error messages

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15981 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Gilles Depeyrot
2002-06-29 11:56:42 +00:00
parent 3212043402
commit 31d560bf7d
2 changed files with 4 additions and 2 deletions

View File

@@ -28,6 +28,7 @@
long wxExecute(const wxString& command, int flags, wxProcess *handler) long wxExecute(const wxString& command, int flags, wxProcess *handler)
{ {
// TODO // TODO
wxFAIL_MSG( _T("wxExecute() not yet implemented") );
return 0; return 0;
} }
#endif #endif
@@ -35,7 +36,7 @@ long wxExecute(const wxString& command, int flags, wxProcess *handler)
#ifdef __DARWIN__ #ifdef __DARWIN__
int wxAddProcessCallback(wxEndProcessData *proc_data, int fd) int wxAddProcessCallback(wxEndProcessData *proc_data, int fd)
{ {
wxFAIL_MSG( _T("wxAddProcessCallback() function not yet implemented") ); wxFAIL_MSG( _T("wxAddProcessCallback() not yet implemented") );
return 0; return 0;
} }
#endif #endif

View File

@@ -28,6 +28,7 @@
long wxExecute(const wxString& command, int flags, wxProcess *handler) long wxExecute(const wxString& command, int flags, wxProcess *handler)
{ {
// TODO // TODO
wxFAIL_MSG( _T("wxExecute() not yet implemented") );
return 0; return 0;
} }
#endif #endif
@@ -35,7 +36,7 @@ long wxExecute(const wxString& command, int flags, wxProcess *handler)
#ifdef __DARWIN__ #ifdef __DARWIN__
int wxAddProcessCallback(wxEndProcessData *proc_data, int fd) int wxAddProcessCallback(wxEndProcessData *proc_data, int fd)
{ {
wxFAIL_MSG( _T("wxAddProcessCallback() function not yet implemented") ); wxFAIL_MSG( _T("wxAddProcessCallback() not yet implemented") );
return 0; return 0;
} }
#endif #endif