Update of /cvsroot/pywin32/pywin32/com/win32comext/shell/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14425/com/win32comext/shell/src
Modified Files:
PyIShellView.cpp
Log Message:
autoduck corrections
Index: PyIShellView.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32comext/shell/src/PyIShellView.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** PyIShellView.cpp 3 Jun 2007 14:53:07 -0000 1.7
--- PyIShellView.cpp 8 Jan 2008 00:37:49 -0000 1.8
***************
*** 26,30 ****
}
! // @pymethod |PyIShellView|TranslateAccelerator|Description of TranslateAccelerator.
PyObject *PyIShellView::TranslateAccelerator(PyObject *self, PyObject *args)
{
--- 26,30 ----
}
! // @pymethod int|PyIShellView|TranslateAccelerator|Description of TranslateAccelerator.
PyObject *PyIShellView::TranslateAccelerator(PyObject *self, PyObject *args)
{
***************
*** 46,49 ****
--- 46,50 ----
if ( FAILED(hr) )
return PyCom_BuildPyException(hr, pISV, IID_IShellView );
+ // @rdesc The result is the HRESULT from the underlying TranslateAccelerator call
return PyInt_FromLong(hr);
}
***************
*** 107,111 ****
}
! // @pymethod |PyIShellView|CreateViewWindow|Description of CreateViewWindow.
PyObject *PyIShellView::CreateViewWindow(PyObject *self, PyObject *args)
{
--- 108,112 ----
}
! // @pymethod int|PyIShellView|CreateViewWindow|Description of CreateViewWindow.
PyObject *PyIShellView::CreateViewWindow(PyObject *self, PyObject *args)
{
***************
*** 144,147 ****
--- 145,149 ----
if ( FAILED(hr) )
return PyCom_BuildPyException(hr, pISV, IID_IShellView );
+ // @rdesc The result is an integer handle to the new window.
return PyWinLong_FromHANDLE(hWnd);
}
***************
*** 165,169 ****
}
! // @pymethod |PyIShellView|GetCurrentInfo|Description of GetCurrentInfo.
PyObject *PyIShellView::GetCurrentInfo(PyObject *self, PyObject *args)
{
--- 167,171 ----
}
! // @pymethod <o PyFOLDERSETTINGS>|PyIShellView|GetCurrentInfo|Description of GetCurrentInfo.
PyObject *PyIShellView::GetCurrentInfo(PyObject *self, PyObject *args)
{
***************
*** 265,269 ****
}
! // @pymethod |PyIShellView|GetItemObject|Description of GetItemObject.
PyObject *PyIShellView::GetItemObject(PyObject *self, PyObject *args)
{
--- 267,271 ----
}
! // @pymethod <o PyIUnknown>|PyIShellView|GetItemObject|Description of GetItemObject.
PyObject *PyIShellView::GetItemObject(PyObject *self, PyObject *args)
{
|