diff options
author | mdejong <mdejong> | 2002-05-27 22:54:42 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2002-05-27 22:54:42 (GMT) |
commit | 972e97ee22e87ef707a976111cddbfe80b4737fc (patch) | |
tree | 4df8b5fe8d050ea301707b1a94f1f4fd55265556 /changes | |
parent | 1c823cfbaafe492b3bd9a506d782804f797bcc2e (diff) | |
download | tk-972e97ee22e87ef707a976111cddbfe80b4737fc.zip tk-972e97ee22e87ef707a976111cddbfe80b4737fc.tar.gz tk-972e97ee22e87ef707a976111cddbfe80b4737fc.tar.bz2 |
* changes: Document [wm transient .t .t] error.
* tests/wm.test: Check that setting a window
as a transient of itself raises an error. Check
that passing a non-toplevel window to the wm
transient command uses the enclosing toplevel.
* unix/tkUnixWm.c (Tk_WmCmd): Raise an error
if the user tries to make a toplevel a
transient of itself.
* win/tkWinWm.c (Tk_WmCmd): Raise an error
if the user tries to make a toplevel a
transient of itself. Test for other error
before checking for the transient self error.
Diffstat (limited to 'changes')
-rw-r--r-- | changes | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2,7 +2,7 @@ This file summarizes all changes made to Tk since version 1.0 was released on March 13, 1991. Changes that aren't backward compatible are marked specially. -RCS: @(#) $Id: changes,v 1.51 2002/03/04 23:34:09 hobbs Exp $ +RCS: @(#) $Id: changes,v 1.52 2002/05/27 22:54:42 mdejong Exp $ 3/16/91 (bug fix) Modified tkWindow.c to remove Tk's Tcl commands from the interpreter when the main window is deleted (otherwise there will @@ -5183,3 +5183,5 @@ address TIP 72 changes (64-bit) in Tcl (fellows) * (updated demos) many updates to show new features (fellows) --- Released 8.4a4, March 5, 2002 --- See ChangeLog for details --- + +2002-05-27 (feature change) [wm transient .t .t] now raises an error |