Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 182b5ac

Browse files
committedJul 18, 2004
Whitespace normalization, via reindent.py.
1 parent e6ddc8b commit 182b5ac

File tree

453 files changed

+31802
-31936
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

453 files changed

+31802
-31936
lines changed
 

‎Demo/tix/samples/Balloon.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
import Tix
1919

20-
TCL_ALL_EVENTS = 0
20+
TCL_ALL_EVENTS = 0
2121

2222
def RunSample (root):
2323
balloon = DemoBalloon(root)

‎Demo/tix/samples/BtnBox.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*-mode: python; fill-column: 75; tab-width: 8; coding: iso-latin-1-unix -*-
2-
#
2+
#
33
# $Id$
44
#
55
# Tix Demostration Program
@@ -21,7 +21,7 @@ def RunSample(w):
2121
# Create the label on the top of the dialog box
2222
#
2323
top = Tix.Label(w, padx=20, pady=10, bd=1, relief=Tix.RAISED,
24-
anchor=Tix.CENTER, text='This dialog box is\n a demonstration of the\n tixButtonBox widget')
24+
anchor=Tix.CENTER, text='This dialog box is\n a demonstration of the\n tixButtonBox widget')
2525

2626
# Create the button box and add a few buttons in it. Set the
2727
# -width of all the buttons to the same value so that they
@@ -32,9 +32,9 @@ def RunSample(w):
3232
#
3333
box = Tix.ButtonBox(w, orientation=Tix.HORIZONTAL)
3434
box.add('ok', text='OK', underline=0, width=5,
35-
command=lambda w=w: w.destroy())
35+
command=lambda w=w: w.destroy())
3636
box.add('close', text='Cancel', underline=0, width=5,
37-
command=lambda w=w: w.destroy())
37+
command=lambda w=w: w.destroy())
3838
box.pack(side=Tix.BOTTOM, fill=Tix.X)
3939
top.pack(side=Tix.TOP, fill=Tix.BOTH, expand=1)
4040

0 commit comments

Comments
 (0)
Please sign in to comment.