summaryrefslogtreecommitdiffstats
path: root/library/xmfbox.tcl
diff options
context:
space:
mode:
authordgp@users.sourceforge.net <dgp>2011-10-31 14:08:04 (GMT)
committerdgp@users.sourceforge.net <dgp>2011-10-31 14:08:04 (GMT)
commit551d25a27de5cf5d98611803315173db25908196 (patch)
treea5c8be59b6c4c89db5885f321bd76a9702423083 /library/xmfbox.tcl
parentb5b4ee7ca0a8d135d237ff48fc57e695bf17f430 (diff)
parentac1b5d028e4ab9a05dc89432155657e55fa7a670 (diff)
downloadtk-551d25a27de5cf5d98611803315173db25908196.zip
tk-551d25a27de5cf5d98611803315173db25908196.tar.gz
tk-551d25a27de5cf5d98611803315173db25908196.tar.bz2
TIP 382 test suite update and Motif dialog implementation.
Diffstat (limited to 'library/xmfbox.tcl')
-rw-r--r--library/xmfbox.tcl6
1 files changed, 5 insertions, 1 deletions
diff --git a/library/xmfbox.tcl b/library/xmfbox.tcl
index 092f177..a1d6048 100644
--- a/library/xmfbox.tcl
+++ b/library/xmfbox.tcl
@@ -246,8 +246,12 @@ proc ::tk::MotifFDialog_Config {dataName type argList} {
if {$type eq "open"} {
lappend specs {-multiple "" "" "0"}
}
+ if {$type eq "save"} {
+ lappend specs {-confirmoverwrite "" "" "1"}
+ }
set data(-multiple) 0
+ set data(-confirmoverwrite) 1
# 2: default values depending on the type of the dialog
#
if {![info exists data(selectPath)]} {
@@ -847,7 +851,7 @@ proc ::tk::MotifFDialog_ActivateSEnt {w} {
-message [mc {File "%1$s" does not exist.} $item]
return
}
- } elseif {$data(type) eq "save"} {
+ } elseif {$data(type) eq "save" && $data(-confirmoverwrite)} {
set message [format %s%s \
[mc "File \"%1\$s\" already exists.\n\n" $selectFilePath] \
[mc {Replace existing file?}]]