[pywin32-checkins] pywin32/Pythonwin win32thread.cpp,1.6,1.7
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2005-03-05 03:16:43
|
Update of /cvsroot/pywin32/pywin32/Pythonwin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18435 Modified Files: win32thread.cpp Log Message: m_nDisablePumpCount wasn't removed in MFC7, just moved. This should prevent some debugging assertions in Python 2.4 Index: win32thread.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/win32thread.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** win32thread.cpp 7 Oct 2004 08:45:24 -0000 1.6 --- win32thread.cpp 5 Mar 2005 03:16:34 -0000 1.7 *************** *** 120,125 **** // pump message, but quit on WM_QUIT if (!PumpMessage()) { ! #if defined(_DEBUG) && _MFC_VER < 0x0710 m_nDisablePumpCount--; // application must NOT die #endif return; --- 120,129 ---- // pump message, but quit on WM_QUIT if (!PumpMessage()) { ! #if defined(_DEBUG) ! # if _MFC_VER < 0x0710 m_nDisablePumpCount--; // application must NOT die + # else + pState->m_nDisablePumpCount--; // application must NOT die + # endif #endif return; |