From 5f88717aa85af192be03b9ab6b5e4f6be77cac06 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 8 Nov 2002 11:12:26 +0000 Subject: [PATCH] fixed typo: _() was used instead of _T() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17762 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/thread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msw/thread.cpp b/src/msw/thread.cpp index d93d017704..4cbf5710d5 100644 --- a/src/msw/thread.cpp +++ b/src/msw/thread.cpp @@ -243,7 +243,7 @@ wxMutexError wxMutexInternal::Unlock() { if ( !::ReleaseMutex(m_mutex) ) { - wxLogLastError(_("ReleaseMutex()")); + wxLogLastError(_T("ReleaseMutex()")); return wxMUTEX_MISC_ERROR; }