[pywin32-checkins] pywin32/com/win32comext/adsi/src PyADSIUtil.cpp,1.2,1.3
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2005-01-25 13:34:16
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/adsi/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14858/adsi/src Modified Files: PyADSIUtil.cpp Log Message: Fix error handling - mostly removing old OleSetOleError from pythoncom.h Index: PyADSIUtil.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/adsi/src/PyADSIUtil.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PyADSIUtil.cpp 24 Sep 2004 07:25:12 -0000 1.2 --- PyADSIUtil.cpp 25 Jan 2005 13:34:06 -0000 1.3 *************** *** 76,80 **** } // Do the normal thing. ! return OleSetOleError(hr, pUnk, iid); } --- 76,80 ---- } // Do the normal thing. ! return PyCom_BuildPyException(hr, pUnk, iid); } |