From 39d095adb5b73b268107f311c73aa82832bc8930 Mon Sep 17 00:00:00 2001 From: David Elliott Date: Fri, 19 Oct 2007 04:42:23 +0000 Subject: [PATCH] Add missing wxT(). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@49240 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/mac/corefoundation/utilsexc_cf.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mac/corefoundation/utilsexc_cf.cpp b/src/mac/corefoundation/utilsexc_cf.cpp index c6be477ae4..d72be87d80 100644 --- a/src/mac/corefoundation/utilsexc_cf.cpp +++ b/src/mac/corefoundation/utilsexc_cf.cpp @@ -317,13 +317,13 @@ int wxAddProcessCallback(wxEndProcessData *proc_data, int fd) CFSocketRef cfSocket = CFSocketCreateWithNative(kCFAllocatorDefault,fd,kCFSocketReadCallBack,&WXCF_EndProcessDetector,&context); if(cfSocket == NULL) { - wxLogError("Failed to create socket for end process detection"); + wxLogError(wxT("Failed to create socket for end process detection")); return 0; } CFRunLoopSourceRef runLoopSource = CFSocketCreateRunLoopSource(kCFAllocatorDefault, cfSocket, /*highest priority:*/0); if(runLoopSource == NULL) { - wxLogError("Failed to create CFRunLoopSource from CFSocket for end process detection"); + wxLogError(wxT("Failed to create CFRunLoopSource from CFSocket for end process detection")); // closes the fd.. we can't really stop it, nor do we necessarily want to. CFSocketInvalidate(cfSocket); CFRelease(cfSocket);