Update of /cvsroot/pywin32/pywin32/Pythonwin/pywin/dialogs
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv26457/Pythonwin/pywin/dialogs
Modified Files:
Tag: py3k
list.py status.py
Log Message:
Move a couple more dialog templates back to None for extstyle
Index: list.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/dialogs/list.py,v
retrieving revision 1.1.4.2
retrieving revision 1.1.4.3
diff -C2 -d -r1.1.4.2 -r1.1.4.3
*** list.py 31 Aug 2008 18:15:01 -0000 1.1.4.2
--- list.py 4 Dec 2008 04:48:31 -0000 1.1.4.3
***************
*** 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],
--- 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],
Index: status.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/dialogs/status.py,v
retrieving revision 1.3.4.3
retrieving revision 1.3.4.4
diff -C2 -d -r1.3.4.3 -r1.3.4.4
*** status.py 3 Oct 2008 04:07:12 -0000 1.3.4.3
--- status.py 4 Dec 2008 04:48:31 -0000 1.3.4.4
***************
*** 26,30 ****
(0, 0, w, h),
style,
! 0,
(8, "MS Sans Serif")],
]
--- 26,30 ----
(0, 0, w, h),
style,
! None,
(8, "MS Sans Serif")],
]
|