unicode for mac fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22937 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor 2003-08-16 16:46:24 +00:00
parent 5f3f0f1725
commit c32a538aba
2 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ int wxAddProcessCallbackForPid(wxEndProcessData *proc_data, int pid)
kernResult = task_for_pid(taskOfOurProcess,pid, &machPortForProcess);
if(kernResult != KERN_SUCCESS)
{
wxLogDebug("no task_for_pid()");
wxLogDebug(wxT("no task_for_pid()"));
// try seeing if it is already dead or something
// FIXME: a better method would be to call the callback function
// from idle time until the process terminates. Of course, how

View File

@ -76,7 +76,7 @@ int wxAddProcessCallbackForPid(wxEndProcessData *proc_data, int pid)
kernResult = task_for_pid(taskOfOurProcess,pid, &machPortForProcess);
if(kernResult != KERN_SUCCESS)
{
wxLogDebug("no task_for_pid()");
wxLogDebug(wxT("no task_for_pid()"));
// try seeing if it is already dead or something
// FIXME: a better method would be to call the callback function
// from idle time until the process terminates. Of course, how