[Python-checkins] python/nondist/sandbox/msi msi.py,1.33,1.34

loewis at users.sourceforge.net loewis at users.sourceforge.net
Sun Aug 22 15:13:43 CEST 2004


Update of /cvsroot/python/python/nondist/sandbox/msi
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19375

Modified Files:
	msi.py 
Log Message:
Stop using icons for Up and New

Index: msi.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/msi/msi.py,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- msi.py	17 Aug 2004 15:39:09 -0000	1.33
+++ msi.py	22 Aug 2004 13:13:40 -0000	1.34
@@ -296,8 +296,6 @@
         raise "Run icons.mak in PC directory"
     add_data(db, "Binary",
              [("PythonWin", msilib.Binary(srcdir+r"\PCbuild\installer.bmp")), # 152x328 pixels
-              ("Up",msilib.Binary("Up.bin")),
-              ("New",msilib.Binary("New.bin")),
               ("py.ico",msilib.Binary(srcdir+r"\PC\py.ico")),
              ])
     add_data(db, "Icon",
@@ -534,9 +532,9 @@
     seldlg.control("DirectoryList", "DirectoryList", 135, 90, 208, 136, 3, "TARGETDIR",
                    None, "PathEdit", None)
     seldlg.control("PathEdit", "PathEdit", 135, 230, 206, 16, 3, "TARGETDIR", None, "Next", None)
-    c = seldlg.pushbutton("Up", 306, 70, 18, 18, 3670019, "Up", None)
+    c = seldlg.pushbutton("Up", 306, 70, 18, 18, 3, "Up", None)
     c.event("DirectoryListUp", "0")
-    c = seldlg.pushbutton("NewDir", 324, 70, 18, 18, 3670019, "New", None)
+    c = seldlg.pushbutton("NewDir", 324, 70, 30, 18, 3, "New", None)
     c.event("DirectoryListNew", "0")
 
     #####################################################################



More information about the Python-checkins mailing list