[pywin32-checkins] pywin32/Pythonwin win32view.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-14 19:05:22
|
Update of /cvsroot/pywin32/pywin32/Pythonwin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14141 Modified Files: win32view.cpp Log Message: Add a couple of skipLookup's (see bug 1483482) Index: win32view.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/win32view.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** win32view.cpp 5 Nov 1999 06:24:29 -0000 1.3 --- win32view.cpp 14 Feb 2008 19:05:23 -0000 1.4 *************** *** 426,430 **** ((CProtectedView *)pView)->SetDocument(pDoc); GUI_END_SAVE; ! return ui_assoc_object::make( PyCScrollView::type, pView ); } --- 426,430 ---- ((CProtectedView *)pView)->SetDocument(pDoc); GUI_END_SAVE; ! return ui_assoc_object::make( PyCScrollView::type, pView, TRUE ); } *************** *** 655,659 **** ((CProtectedView *)pView)->SetDocument(pDoc); GUI_END_SAVE; ! return ui_assoc_object::make( PyCCtrlView::type, pView ); } --- 655,659 ---- ((CProtectedView *)pView)->SetDocument(pDoc); GUI_END_SAVE; ! return ui_assoc_object::make( PyCCtrlView::type, pView, TRUE ); } *************** *** 714,718 **** CPythonEditView *pView = new CPythonEditView(); ((CProtectedView *)pView)->SetDocument(pDoc); ! return ui_assoc_object::make( PyCEditView::type, pView ); } --- 714,718 ---- CPythonEditView *pView = new CPythonEditView(); ((CProtectedView *)pView)->SetDocument(pDoc); ! return ui_assoc_object::make( PyCEditView::type, pView, TRUE ); } *************** *** 940,944 **** ((CProtectedView *)pView)->SetDocument(pDoc); GUI_END_SAVE; ! return ui_assoc_object::make( PyCListView::type, pView ); } --- 940,944 ---- ((CProtectedView *)pView)->SetDocument(pDoc); GUI_END_SAVE; ! return ui_assoc_object::make( PyCListView::type, pView, TRUE ); } *************** *** 1022,1026 **** ((CProtectedView *)pView)->SetDocument(pDoc); GUI_END_SAVE; ! return ui_assoc_object::make( PyCTreeView::type, pView ); } // @pymethod tuple|PyCTreeView|PreCreateWindow|Calls the underlying MFC PreCreateWindow method. --- 1022,1026 ---- ((CProtectedView *)pView)->SetDocument(pDoc); GUI_END_SAVE; ! return ui_assoc_object::make( PyCTreeView::type, pView, TRUE ); } // @pymethod tuple|PyCTreeView|PreCreateWindow|Calls the underlying MFC PreCreateWindow method. *************** *** 1120,1124 **** ((CProtectedView *)pView)->SetDocument(pDoc); GUI_END_SAVE; ! return ui_assoc_object::make( PyCFormView::type, pView ); } --- 1120,1124 ---- ((CProtectedView *)pView)->SetDocument(pDoc); GUI_END_SAVE; ! return ui_assoc_object::make( PyCFormView::type, pView, TRUE ); } |