[pywin32-checkins] pywin32/Pythonwin win32template.cpp,1.3,1.4
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Roger U. <ru...@us...> - 2008-02-19 22:29:02
|
Update of /cvsroot/pywin32/pywin32/Pythonwin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10882 Modified Files: win32template.cpp Log Message: Add a couple of skipLookups (see bug#1092592) Index: win32template.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/win32template.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** win32template.cpp 28 Jan 2005 22:40:01 -0000 1.3 --- win32template.cpp 19 Feb 2008 22:29:03 -0000 1.4 *************** *** 102,106 **** CPythonDocTemplate *pMFCTemplate = new CPythonDocTemplate(idResource); ! return ui_assoc_object::make(PyCDocTemplate::type, pMFCTemplate); } --- 102,106 ---- CPythonDocTemplate *pMFCTemplate = new CPythonDocTemplate(idResource); ! return ui_assoc_object::make(PyCDocTemplate::type, pMFCTemplate, TRUE); } *************** *** 178,182 **** CFrameWnd *pFrame = new CPythonMDIChildWnd(); GUI_END_SAVE; ! return ui_assoc_object::make(PyCMDIChildWnd::type, pFrame ); } --- 178,182 ---- CFrameWnd *pFrame = new CPythonMDIChildWnd(); GUI_END_SAVE; ! return ui_assoc_object::make(PyCMDIChildWnd::type, pFrame, TRUE ); } |