diff options
Diffstat (limited to 'library/tkfbox.tcl')
-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 |