diff options
author | dgp <dgp@users.sourceforge.net> | 2001-08-01 21:11:41 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2001-08-01 21:11:41 (GMT) |
commit | dae90baa171fc792ca16e28aa05b16b63ab32954 (patch) | |
tree | 8fbc5bac5bdf529f9025c7e6aa1d93530fe30729 | |
parent | 98ea3cb2214b51432f38f6ea50c1c429397281cc (diff) | |
download | tk-dae90baa171fc792ca16e28aa05b16b63ab32954.zip tk-dae90baa171fc792ca16e28aa05b16b63ab32954.tar.gz tk-dae90baa171fc792ca16e28aa05b16b63ab32954.tar.bz2 |
Correction to TIP 44 implementation.
-rw-r--r-- | library/tkfbox.tcl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/tkfbox.tcl b/library/tkfbox.tcl index 6d1f013..194f2f4 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.27 2001/08/01 16:21:11 dgp Exp $ +# RCS: @(#) $Id: tkfbox.tcl,v 1.28 2001/08/01 21:11:41 dgp Exp $ # # Copyright (c) 1994-1998 Sun Microsystems, Inc. # @@ -1506,9 +1506,9 @@ proc ::tk::dialog::file::ActivateEnt {w} { # space in the name. Thus we query the IconList directly. set data(selectFile) "" - foreach item [tkIconList_Curselection $data(icons)] { + foreach item [::tk::IconList_Curselection $data(icons)] { ::tk::dialog::file::VerifyFileName $w \ - [tkIconList_Get $data(icons) $item] + [::tk::IconList_Get $data(icons) $item] } } else { ::tk::dialog::file::VerifyFileName $w $text |