[pywin32-checkins] pywin32/win32/Lib win32rcparser.py,1.3,1.4
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
|
From: Mark H. <mha...@us...> - 2004-09-06 23:51:13
|
Update of /cvsroot/pywin32/pywin32/win32/Lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18282 Modified Files: win32rcparser.py Log Message: Dont imply WS_VISIBLE for dialogs - we don't for anything else, and it it directly exposed by the MSVC UI. Index: win32rcparser.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/Lib/win32rcparser.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** win32rcparser.py 26 May 2004 08:26:39 -0000 1.3 --- win32rcparser.py 6 Sep 2004 23:51:03 -0000 1.4 *************** *** 9,13 **** """ __author__="Adam Walker" ! __version__="0.10" import sys, os, shlex, stat --- 9,13 ---- """ __author__="Adam Walker" ! __version__="0.11" import sys, os, shlex, stat *************** *** 364,368 **** def dialogStyle(self, dlg): ! dlg.style, dlg.styles = self.styles( [], win32con.WS_VISIBLE | win32con.DS_SETFONT) def dialogExStyle(self, dlg): self.getToken() --- 364,368 ---- def dialogStyle(self, dlg): ! dlg.style, dlg.styles = self.styles( [], win32con.DS_SETFONT) def dialogExStyle(self, dlg): self.getToken() |