summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authordgp@users.sourceforge.net <dgp>2005-04-05 13:56:31 (GMT)
committerdgp@users.sourceforge.net <dgp>2005-04-05 13:56:31 (GMT)
commit84a7f9a0dc89fbede96efdb98ba5dd5037ab6e9c (patch)
tree0904533dc028a35ca18d7dfe07f484cef44aea8f /library
parent1b80b624a4a360ce8d3ac08750d34cc9e1f90f04 (diff)
downloadtk-84a7f9a0dc89fbede96efdb98ba5dd5037ab6e9c.zip
tk-84a7f9a0dc89fbede96efdb98ba5dd5037ab6e9c.tar.gz
tk-84a7f9a0dc89fbede96efdb98ba5dd5037ab6e9c.tar.bz2
* library/comdlg.tcl: Added Macintosh file type validation to
[::tk::FDGetFileTypes]. [Bug 1083878] (Thanks, Vince Darley)
Diffstat (limited to 'library')
-rw-r--r--library/comdlg.tcl11
1 files changed, 10 insertions, 1 deletions
diff --git a/library/comdlg.tcl b/library/comdlg.tcl
index 9cc5d74..5192791 100644
--- a/library/comdlg.tcl
+++ b/library/comdlg.tcl
@@ -3,7 +3,7 @@
# Some functions needed for the common dialog boxes. Probably need to go
# in a different file.
#
-# RCS: @(#) $Id: comdlg.tcl,v 1.9 2003/02/21 13:32:14 dkf Exp $
+# RCS: @(#) $Id: comdlg.tcl,v 1.10 2005/04/05 13:56:35 dgp Exp $
#
# Copyright (c) 1996 Sun Microsystems, Inc.
#
@@ -279,6 +279,15 @@ proc ::tk::FDGetFileTypes {string} {
continue
}
+ # Validate each macType. This is to agree with the
+ # behaviour of TkGetFileFilters(). This list may be
+ # empty.
+ foreach macType [lindex $t 2] {
+ if {[string length $macType] != 4} {
+ error "bad Macintosh file type \"$macType\""
+ }
+ }
+
set name "$label ("
set sep ""
set doAppend 1