]> git.saurik.com Git - wxWidgets.git/commitdiff
unicode for mac fixes
authorStefan Csomor <csomor@advancedconcepts.ch>
Sat, 16 Aug 2003 16:46:24 +0000 (16:46 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Sat, 16 Aug 2003 16:46:24 +0000 (16:46 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22937 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/utilsexc.cpp
src/mac/utilsexc.cpp

index e90ec86c08319e475f949ba14213af24eb59d1a8..3136b9fd8499686f35dd7e55ecddbee4465406e0 100644 (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
index e90ec86c08319e475f949ba14213af24eb59d1a8..3136b9fd8499686f35dd7e55ecddbee4465406e0 100644 (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