diff options
author | dgp <dgp@users.sourceforge.net> | 2001-08-09 00:47:09 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2001-08-09 00:47:09 (GMT) |
commit | 18396553f0b7e28d471b618a13aba4a86442d5fe (patch) | |
tree | 8dd98f4146684ae503780cac6b9828f05d7100bf /library/tkfbox.tcl | |
parent | 1bcff86348472faf0a31a3c7e4b8c779c1c5739d (diff) | |
download | tk-18396553f0b7e28d471b618a13aba4a86442d5fe.zip tk-18396553f0b7e28d471b618a13aba4a86442d5fe.tar.gz tk-18396553f0b7e28d471b618a13aba4a86442d5fe.tar.bz2 |
Corrections to problems introduced by
the TIP 44 changes. [Bug 449261]
Diffstat (limited to 'library/tkfbox.tcl')
-rw-r--r-- | library/tkfbox.tcl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/library/tkfbox.tcl b/library/tkfbox.tcl index 194f2f4..4e2ed56 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.28 2001/08/01 21:11:41 dgp Exp $ +# RCS: @(#) $Id: tkfbox.tcl,v 1.29 2001/08/09 00:47:09 dgp Exp $ # # Copyright (c) 1994-1998 Sun Microsystems, Inc. # @@ -700,7 +700,6 @@ proc ::tk::IconList_KeyPress {w key} { proc ::tk::IconList_Goto {w text} { upvar ::tk::$w data upvar ::tk::$w:textList textList - variable ::tk::Priv if {![info exists data(list)]} { return @@ -857,7 +856,7 @@ proc ::tk::dialog::file:: {type args} { # may take the focus away so we can't redirect it. Finally, # restore any grab that was in effect. - vwait tk::Priv(selectFilePath) + vwait ::tk::Priv(selectFilePath) ::tk::RestoreFocusGrab $w $data(ent) withdraw |