diff options
author | dgp <dgp@users.sourceforge.net> | 2011-10-31 14:07:07 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2011-10-31 14:07:07 (GMT) |
commit | 5fbf35844154d90df4f7fdf5b9b21edea07c4e6e (patch) | |
tree | 18c8f3f977286735dd8569a44d6b15f0fa16f9f1 /library | |
parent | 3f74c4758e4bb45ac5717d421bca32d7e5bf7cd1 (diff) | |
download | tk-5fbf35844154d90df4f7fdf5b9b21edea07c4e6e.zip tk-5fbf35844154d90df4f7fdf5b9b21edea07c4e6e.tar.gz tk-5fbf35844154d90df4f7fdf5b9b21edea07c4e6e.tar.bz2 |
TIP 382 test suite update and Motif dialog implementation.
Diffstat (limited to 'library')
-rw-r--r-- | library/xmfbox.tcl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/library/xmfbox.tcl b/library/xmfbox.tcl index d511462..0cbf251 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?}]] |