diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | library/demos/pendulum.tcl | 4 |
2 files changed, 6 insertions, 4 deletions
@@ -1,5 +1,7 @@ 2006-10-16 Andreas Kupries <andreask@activestate.com> + *** 8.5a5 TAGGED FOR RELEASE *** + * doc/WindowId.3: Pat's commit on 2006-10-08 broke the .SH NAME information across several lines, breaking the cross-linking of manpages during installation for this one. Put everything back @@ -7,8 +9,6 @@ 2006-10-16 Daniel Steffen <das@users.sourceforge.net> - *** 8.5a5 TAGGED FOR RELEASE *** - * changes: updates for 8.5a5 release. * macosx/tkMacOSXDraw.c: fix numerous issues in CG and QD drawing procs @@ -25,6 +25,8 @@ * macosx/GNUmakefile: don't redo prebinding of non-prebound binaires. + * library/demos/pendulum.tcl: fix incorrect setting of toplevel title. + 2006-10-10 Don Porter <dgp@users.sourceforge.net> * changes: Updates for 8.5a5 release diff --git a/library/demos/pendulum.tcl b/library/demos/pendulum.tcl index cb31b33..b70cbf1 100644 --- a/library/demos/pendulum.tcl +++ b/library/demos/pendulum.tcl @@ -3,7 +3,7 @@ # This demonstration illustrates how Tcl/Tk can be used to construct # simulations of physical systems. # -# RCS: @(#) $Id: pendulum.tcl,v 1.2 2004/12/21 11:56:35 dkf Exp $ +# RCS: @(#) $Id: pendulum.tcl,v 1.3 2006/10/17 05:52:40 das Exp $ if {![info exists widgetDemo]} { error "This script should be run from the \"widget\" demo." @@ -14,7 +14,7 @@ package require Tk set w .pendulum catch {destroy $w} toplevel $w -wm title . "Pendulum Animation Demonstration" +wm title $w "Pendulum Animation Demonstration" wm iconname $w "pendulum" positionWindow $w |