projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add various selection menu items to the sample.
[wxWidgets.git]
/
src
/
os2
/
thread.cpp
diff --git
a/src/os2/thread.cpp
b/src/os2/thread.cpp
index 2dbd2268558803b37bd7f21256d0a5adf70bb554..d1ee5dc364a051a7a0b29c2ab7698cd04d3da9e9 100644
(file)
--- a/
src/os2/thread.cpp
+++ b/
src/os2/thread.cpp
@@
-114,7
+114,7
@@
wxMutexInternal::wxMutexInternal(wxMutexType WXUNUSED(eMutexType))
APIRET ulrc = ::DosCreateMutexSem(NULL, &m_vMutex, 0L, FALSE);
if (ulrc != 0)
{
APIRET ulrc = ::DosCreateMutexSem(NULL, &m_vMutex, 0L, FALSE);
if (ulrc != 0)
{
- wxLogSysError(_("Can
not create mutex."));
+ wxLogSysError(_("Cannot create mutex."));
m_vMutex = NULL;
}
}
m_vMutex = NULL;
}
}
@@
-511,7
+511,7
@@
bool wxThreadInternal::Suspend()
if (ulrc != 0)
{
if (ulrc != 0)
{
- wxLogSysError(_("Can
not suspend thread %lu"), m_hThread);
+ wxLogSysError(_("Cannot suspend thread %lu"), m_hThread);
return false;
}
m_eState = STATE_PAUSED;
return false;
}
m_eState = STATE_PAUSED;
@@
-525,7
+525,7
@@
bool wxThreadInternal::Resume()
if (ulrc != 0)
{
if (ulrc != 0)
{
- wxLogSysError(_("Can
not resume thread %lu"), m_hThread);
+ wxLogSysError(_("Cannot resume thread %lu"), m_hThread);
return false;
}
return false;
}