[pywin32-checkins] pywin32/Pythonwin/pywin/dialogs list.py, 1.1.4.1, 1.1.4.2
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Roger U. <ru...@us...> - 2008-08-31 18:14:53
|
Update of /cvsroot/pywin32/pywin32/Pythonwin/pywin/dialogs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30324/dialogs Modified Files: Tag: py3k list.py Log Message: Use 0 instead of None for extended style in dialog tuples Index: list.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/dialogs/list.py,v retrieving revision 1.1.4.1 retrieving revision 1.1.4.2 diff -C2 -d -r1.1.4.1 -r1.1.4.2 *** list.py 29 Aug 2008 06:16:41 -0000 1.1.4.1 --- list.py 31 Aug 2008 18:15:01 -0000 1.1.4.2 *************** *** 23,27 **** win32con.WS_VISIBLE ) ! return [ [title, (0, 0, 200, 200), style, None, (8, "MS Sans Serif")], ["SysListView32", None, win32ui.IDC_LIST1, (0, 0, 200, 200), ls], [128, "OK", win32con.IDOK, (10, 0, 50, 14), bs | win32con.BS_DEFPUSHBUTTON], --- 23,27 ---- win32con.WS_VISIBLE ) ! return [ [title, (0, 0, 200, 200), style, 0, (8, "MS Sans Serif")], ["SysListView32", None, win32ui.IDC_LIST1, (0, 0, 200, 200), ls], [128, "OK", win32con.IDOK, (10, 0, 50, 14), bs | win32con.BS_DEFPUSHBUTTON], |