]> git.saurik.com Git - wxWidgets.git/commitdiff
wxUSE_THREAD -> wxUSE_THREADS
authorJaakko Salli <jaakko.salli@dnainternet.net>
Mon, 28 Sep 2009 06:25:44 +0000 (06:25 +0000)
committerJaakko Salli <jaakko.salli@dnainternet.net>
Mon, 28 Sep 2009 06:25:44 +0000 (06:25 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62177 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/propgrid/propgrid.h
src/propgrid/propgrid.cpp

index a8dbe52937fa00e64c8072fef67d91555db0b979..95ad58a17131c2f5b1d289ea4dfb69e7c9d5d61f 100644 (file)
@@ -44,7 +44,7 @@ public:
     wxPGGlobalVarsClass();
     ~wxPGGlobalVarsClass();
 
     wxPGGlobalVarsClass();
     ~wxPGGlobalVarsClass();
 
-#if wxUSE_THREAD
+#if wxUSE_THREADS
     // Critical section for handling the globals. Generally it is not needed
     // since GUI code is supposed to be in single thread. However,
     // we do want the user to be able to convey wxPropertyGridEvents to other
     // Critical section for handling the globals. Generally it is not needed
     // since GUI code is supposed to be in single thread. However,
     // we do want the user to be able to convey wxPropertyGridEvents to other
index a366de4640fa23609d7f6752d5bae11e85854c0b..18370b90df7aa76163f3c6f7fc1db799e731aa8b 100644 (file)
@@ -582,7 +582,7 @@ wxPropertyGrid::~wxPropertyGrid()
 {
     size_t i;
 
 {
     size_t i;
 
-#if wxUSE_THREAD
+#if wxUSE_THREADS
     wxCriticalSectionLocker(wxPGGlobalVars->m_critSect);
 #endif
 
     wxCriticalSectionLocker(wxPGGlobalVars->m_critSect);
 #endif
 
@@ -5894,7 +5894,7 @@ void wxPropertyGridEvent::OnPropertyGridSet()
     if ( !m_pg )
         return;
 
     if ( !m_pg )
         return;
 
-#if wxUSE_THREAD
+#if wxUSE_THREADS
     wxCriticalSectionLocker(wxPGGlobalVars->m_critSect);
 #endif
     m_pg->m_liveEvents.push_back(this);
     wxCriticalSectionLocker(wxPGGlobalVars->m_critSect);
 #endif
     m_pg->m_liveEvents.push_back(this);
@@ -5906,7 +5906,7 @@ wxPropertyGridEvent::~wxPropertyGridEvent()
 {
     if ( m_pg )
     {
 {
     if ( m_pg )
     {
-    #if wxUSE_THREAD
+    #if wxUSE_THREADS
         wxCriticalSectionLocker(wxPGGlobalVars->m_critSect);
     #endif
 
         wxCriticalSectionLocker(wxPGGlobalVars->m_critSect);
     #endif