[pywin32-checkins] pywin32/Pythonwin win32dlg.cpp,1.7,1.8
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2005-06-21 08:05:34
|
Update of /cvsroot/pywin32/pywin32/Pythonwin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3206 Modified Files: win32dlg.cpp Log Message: Remove pointless (and harmful when not run under pythonwin.exe) check. Index: win32dlg.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/win32dlg.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** win32dlg.cpp 2 Jun 2001 14:51:41 -0000 1.7 --- win32dlg.cpp 21 Jun 2005 08:05:26 -0000 1.8 *************** *** 140,146 **** if (!pApp) return NULL; - if (pApp->GetMainFrame()) - RETURN_ERR(errmsgAlreadyInit); - if (!PyArg_ParseTuple(args,"O:InitDlgInstance",&obDlg)) return NULL; --- 140,143 ---- |