From 37da386f77095543cf7740453455701ab65b5c94 Mon Sep 17 00:00:00 2001 From: Mattia Barbon Date: Sun, 27 Feb 2005 15:39:36 +0000 Subject: [PATCH] Use the same error message for wxMSW and wxMac. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32417 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/mac/carbon/mpthread.cpp | 2 +- src/mac/carbon/thread.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mac/carbon/mpthread.cpp b/src/mac/carbon/mpthread.cpp index fe01a8bdd1..bb8a833ce4 100755 --- a/src/mac/carbon/mpthread.cpp +++ b/src/mac/carbon/mpthread.cpp @@ -974,7 +974,7 @@ void wxThreadInternal::Wait() kDurationForever); if ( err) { - wxLogSysError( _( "Cannot wait on thread to exit.")); + wxLogSysError( _( "Cannot wait for thread termination.")); rc = (void*) -1; } diff --git a/src/mac/carbon/thread.cpp b/src/mac/carbon/thread.cpp index 0915d13a23..3700a9a375 100644 --- a/src/mac/carbon/thread.cpp +++ b/src/mac/carbon/thread.cpp @@ -1171,7 +1171,7 @@ void wxThreadInternal::Wait() kDurationForever); if ( err) { - wxLogSysError( _( "Cannot wait on thread to exit.")); + wxLogSysError( _( "Cannot wait for thread termination.")); rc = (void*) -1; } -- 2.45.2