Update of /cvsroot/pywin32/pywin32/Pythonwin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3485
Modified Files:
win32dlg.cpp
Log Message:
Add a couple of skipLookup's (see bug 1483482)
Index: win32dlg.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/Pythonwin/win32dlg.cpp,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** win32dlg.cpp 3 Jun 2007 12:35:58 -0000 1.9
--- win32dlg.cpp 12 Feb 2008 19:26:13 -0000 1.10
***************
*** 89,93 ****
CDialog *pDlg = new CPythonDlg();
! PyCDialog *ret = (PyCDialog *)ui_assoc_object::make( PyCDialog::type, pDlg);
if (ret) {
ret->hTemplate = hGlob;
--- 89,93 ----
CDialog *pDlg = new CPythonDlg();
! PyCDialog *ret = (PyCDialog *)ui_assoc_object::make( PyCDialog::type, pDlg, TRUE);
if (ret) {
ret->hTemplate = hGlob;
***************
*** 490,494 ****
CDialog *pDlg = new CPythonDlg();
GUI_END_SAVE;
! PyCDialog *ret = (PyCDialog *)ui_assoc_object::make( PyCDialog::type, pDlg);
if (ret) {
ret->hTemplate = hGlob;
--- 490,494 ----
CDialog *pDlg = new CPythonDlg();
GUI_END_SAVE;
! PyCDialog *ret = (PyCDialog *)ui_assoc_object::make( PyCDialog::type, pDlg, TRUE);
if (ret) {
ret->hTemplate = hGlob;
***************
*** 510,514 ****
return NULL;
CDialog *pDlg = new CPythonDlg();
! PyCDialog *ret = (PyCDialog *)ui_assoc_object::make( PyCDialog::type, pDlg);
if (ret)
{
--- 510,514 ----
return NULL;
CDialog *pDlg = new CPythonDlg();
! PyCDialog *ret = (PyCDialog *)ui_assoc_object::make( PyCDialog::type, pDlg, TRUE);
if (ret)
{
***************
*** 795,799 ****
RETURN_ERR("Creating CFileDialog failed"); // pyseemfc CFileCialog|CFileDialog
PyCFileDialog *newObj =
! (PyCFileDialog *)ui_assoc_object::make( PyCFileDialog::type, pDlg);
// if (newObj)
// newObj->bManualDelete = TRUE;
--- 795,799 ----
RETURN_ERR("Creating CFileDialog failed"); // pyseemfc CFileCialog|CFileDialog
PyCFileDialog *newObj =
! (PyCFileDialog *)ui_assoc_object::make( PyCFileDialog::type, pDlg, TRUE);
// if (newObj)
// newObj->bManualDelete = TRUE;
***************
*** 1038,1042 ****
}
PyCFontDialog *newObj =
! (PyCFontDialog *)ui_assoc_object::make( PyCFontDialog::type, pDlg);
if (newObj && pFont)
newObj->pInitLogFont = pFont;
--- 1038,1042 ----
}
PyCFontDialog *newObj =
! (PyCFontDialog *)ui_assoc_object::make( PyCFontDialog::type, pDlg, TRUE);
if (newObj && pFont)
newObj->pInitLogFont = pFont;
***************
*** 1217,1221 ****
}
PyCColorDialog *newObj =
! (PyCColorDialog *)ui_assoc_object::make( PyCColorDialog::type, pDlg);
return newObj;
}
--- 1217,1221 ----
}
PyCColorDialog *newObj =
! (PyCColorDialog *)ui_assoc_object::make( PyCColorDialog::type, pDlg, TRUE);
return newObj;
}
***************
*** 1408,1412 ****
CPrintDialog *pDlg = new CPythonPrtDlg(bPrintSetupOnly, dwFlags, pParentWnd);
GUI_END_SAVE;
! PyCPrintDialog *ret = (PyCPrintDialog *)ui_assoc_object::make( PyCPrintDialog::type, pDlg);
if (ret) {
ret->hTemplate = hGlob;
--- 1408,1412 ----
CPrintDialog *pDlg = new CPythonPrtDlg(bPrintSetupOnly, dwFlags, pParentWnd);
GUI_END_SAVE;
! PyCPrintDialog *ret = (PyCPrintDialog *)ui_assoc_object::make( PyCPrintDialog::type, pDlg, TRUE);
if (ret) {
ret->hTemplate = hGlob;
|