[pywin32-checkins] pywin32/Pythonwin win32uiExt.h,1.15,1.16
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-12-06 01:53:44
|
Update of /cvsroot/pywin32/pywin32/Pythonwin In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3936/Pythonwin Modified Files: win32uiExt.h Log Message: use more appropriate 'message' helper Index: win32uiExt.h =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/win32uiExt.h,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** win32uiExt.h 13 Nov 2008 04:04:50 -0000 1.15 --- win32uiExt.h 6 Dec 2008 01:49:31 -0000 1.16 *************** *** 828,834 **** // @xref <om PyCMDIChildWnd.GetMessageString> if (helper.call((int &)nID)) { ! char *ret; ! if (helper.retval(ret)) ! rMessage = ret; } else --- 828,832 ---- // @xref <om PyCMDIChildWnd.GetMessageString> if (helper.call((int &)nID)) { ! helper.retval(rMessage); } else |