]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/event.cpp
removed empty and unused CalculateScrollbar() method
[wxWidgets.git] / src / common / event.cpp
index abca39a4b70081125000d6317c2c32d693c4b8ea..c254930217e1cc2c3e7124bb6b51637ee6fff0d1 100644 (file)
@@ -1011,9 +1011,6 @@ wxEvtHandler::wxEvtHandler()
     m_eventsLocker = new wxCriticalSection;
 #  endif
 #endif
-    // reentrace not allowed by default
-    m_reentranceAllowed = false;
-    m_eventHandlingInProgress = false;
     
     // no client data (yet)
     m_clientData = NULL;
@@ -1140,9 +1137,6 @@ void wxEvtHandler::ProcessPendingEvents()
     wxCHECK_RET( m_pendingEvents,
                  wxT("Please call wxApp::ProcessPendingEvents() instead") );
     
-    // eventhandling is now in progess
-    m_eventHandlingInProgress = true;
-
     wxENTER_CRIT_SECT( Lock() );
 
     // we leave the loop once we have processed all events that were present at
@@ -1166,9 +1160,6 @@ void wxEvtHandler::ProcessPendingEvents()
 
         ProcessEvent(*event);
 
-        // eventhandling no longer in progess
-        m_eventHandlingInProgress = false;
-        
         delete event;
 
         wxENTER_CRIT_SECT( Lock() );