diff options
author | hobbs <hobbs> | 2000-01-06 02:22:24 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-01-06 02:22:24 (GMT) |
commit | f56e033eeeeef36def67329d2f3d67f1ef06483b (patch) | |
tree | f460bc9e6b6a8136f9c788b897f75dbcfcceca71 /library/tkfbox.tcl | |
parent | 0bcb96bc6cddb09417aaa0ca4ad48469d0194255 (diff) | |
download | tk-f56e033eeeeef36def67329d2f3d67f1ef06483b.zip tk-f56e033eeeeef36def67329d2f3d67f1ef06483b.tar.gz tk-f56e033eeeeef36def67329d2f3d67f1ef06483b.tar.bz2 |
* library/entry.tcl:
* library/focus.tcl:
* library/listbox.tcl:
* library/scale.tcl:
* library/scrlbar.tcl:
* library/tearoff.tcl:
* library/text.tcl:
* library/tkfbox.tcl:
* library/xmfbox.tcl: fixed unprotected arg parsing through eval/after
[Bug: 3943]
Diffstat (limited to 'library/tkfbox.tcl')
-rw-r--r-- | library/tkfbox.tcl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/tkfbox.tcl b/library/tkfbox.tcl index 990a860..ef17c61 100644 --- a/library/tkfbox.tcl +++ b/library/tkfbox.tcl @@ -11,7 +11,7 @@ # files by clicking on the file icons or by entering a filename # in the "Filename:" entry. # -# RCS: @(#) $Id: tkfbox.tcl,v 1.12 1999/12/16 21:57:53 hobbs Exp $ +# RCS: @(#) $Id: tkfbox.tcl,v 1.13 2000/01/06 02:22:25 hobbs Exp $ # # Copyright (c) 1994-1998 Sun Microsystems, Inc. # @@ -150,7 +150,7 @@ proc tkIconList_AutoScan {w} { } tkIconList_Motion1 $w $x $y - set tkPriv(afterId) [after 50 tkIconList_AutoScan $w] + set tkPriv(afterId) [after 50 [list tkIconList_AutoScan $w]] } # Deletes all the items inside the canvas subwidget and reset the IconList's @@ -555,7 +555,7 @@ proc tkIconList_KeyPress {w key} { catch { after cancel $tkPriv(ILAccel,$w,afterId) } - set tkPriv(ILAccel,$w,afterId) [after 500 tkIconList_Reset $w] + set tkPriv(ILAccel,$w,afterId) [after 500 [list tkIconList_Reset $w]] } proc tkIconList_Goto {w text} { @@ -933,7 +933,7 @@ proc tkFDialog_UpdateWhenIdle {w} { if {[info exists data(updateId)]} { return } else { - set data(updateId) [after idle tkFDialog_Update $w] + set data(updateId) [after idle [list tkFDialog_Update $w]] } } |