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 | |
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')
-rw-r--r-- | library/dialog.tcl | 10 | ||||
-rw-r--r-- | library/tkfbox.tcl | 5 |
2 files changed, 7 insertions, 8 deletions
diff --git a/library/dialog.tcl b/library/dialog.tcl index a6f3c5b..26d643d 100644 --- a/library/dialog.tcl +++ b/library/dialog.tcl @@ -3,7 +3,7 @@ # This file defines the procedure tk_dialog, which creates a dialog # box containing a bitmap, a message, and one or more buttons. # -# RCS: @(#) $Id: dialog.tcl,v 1.10 2001/08/06 18:29:41 dgp Exp $ +# RCS: @(#) $Id: dialog.tcl,v 1.11 2001/08/09 00:47:09 dgp Exp $ # # Copyright (c) 1992-1993 The Regents of the University of California. # Copyright (c) 1994-1997 Sun Microsystems, Inc. @@ -104,7 +104,7 @@ proc ::tk_dialog {w title text bitmap default args} { set i 0 foreach but $args { - button $w.button$i -text $but -command [list set Priv(button) $i] + button $w.button$i -text $but -command [list set ::tk::Priv(button) $i] if {$i == $default} { $w.button$i configure -default active } else { @@ -130,7 +130,7 @@ proc ::tk_dialog {w title text bitmap default args} { [list $w.button$default] configure -state active -relief sunken update idletasks after 100 - set Priv(button) $default + set ::tk::Priv(button) $default " } @@ -138,7 +138,7 @@ proc ::tk_dialog {w title text bitmap default args} { # button variable to -1; this is needed in case something happens # that destroys the window, such as its parent window being destroyed. - bind $w <Destroy> {set Priv(button) -1} + bind $w <Destroy> {set ::tk::Priv(button) -1} # 6. Withdraw the window, then update all the geometry information # so we know how big it wants to be, then center the window in the @@ -178,7 +178,7 @@ proc ::tk_dialog {w title text bitmap default args} { catch { # It's possible that the window has already been destroyed, # hence this "catch". Delete the Destroy handler so that - # tk::Priv(button) doesn't get reset by it. + # Priv(button) doesn't get reset by it. bind $w <Destroy> {} destroy $w 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 |