wxUSE_THREAD -> wxUSE_THREADS

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62177 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jaakko Salli
2009-09-28 06:25:44 +00:00
parent 1690c2ce36
commit 9370ec6a3b
2 changed files with 4 additions and 4 deletions

View File

@@ -582,7 +582,7 @@ wxPropertyGrid::~wxPropertyGrid()
{
size_t i;
#if wxUSE_THREAD
#if wxUSE_THREADS
wxCriticalSectionLocker(wxPGGlobalVars->m_critSect);
#endif
@@ -5894,7 +5894,7 @@ void wxPropertyGridEvent::OnPropertyGridSet()
if ( !m_pg )
return;
#if wxUSE_THREAD
#if wxUSE_THREADS
wxCriticalSectionLocker(wxPGGlobalVars->m_critSect);
#endif
m_pg->m_liveEvents.push_back(this);
@@ -5906,7 +5906,7 @@ wxPropertyGridEvent::~wxPropertyGridEvent()
{
if ( m_pg )
{
#if wxUSE_THREAD
#if wxUSE_THREADS
wxCriticalSectionLocker(wxPGGlobalVars->m_critSect);
#endif