diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2001-07-03 14:59:25 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2001-07-03 14:59:25 (GMT) |
commit | 4d6f85b90c588fb25fe632fa2cc5a44a26e9a324 (patch) | |
tree | c7b93b3ffc0e170574c067c6f6f696119259045b /library | |
parent | 828e491755404c0fc718cf5fe6b083f486a426a8 (diff) | |
download | tk-4d6f85b90c588fb25fe632fa2cc5a44a26e9a324.zip tk-4d6f85b90c588fb25fe632fa2cc5a44a26e9a324.tar.gz tk-4d6f85b90c588fb25fe632fa2cc5a44a26e9a324.tar.bz2 |
Added missing backslash in Motif File Selector code.
Diffstat (limited to 'library')
-rw-r--r-- | library/xmfbox.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/xmfbox.tcl b/library/xmfbox.tcl index ae964e8..0f3fee5 100644 --- a/library/xmfbox.tcl +++ b/library/xmfbox.tcl @@ -4,7 +4,7 @@ # Unix platform. This implementation is used only if the # "tk_strictMotif" flag is set. # -# RCS: @(#) $Id: xmfbox.tcl,v 1.15 2001/06/14 10:56:58 dkf Exp $ +# RCS: @(#) $Id: xmfbox.tcl,v 1.16 2001/07/03 14:59:25 dkf Exp $ # # Copyright (c) 1996 Sun Microsystems, Inc. # Copyright (c) 1998-2000 Scriptics Corporation @@ -825,7 +825,7 @@ proc tkMotifFDialog_ActivateSEnt {w} { if {[string equal $data(type) save]} { set message [format %s%s \ [::msgcat::mc {File "%1$s" already exists.\n\n} \ - $selectFilePath ] + $selectFilePath ] \ [::msgcat::mc {Replace existing file?}]] set answer [tk_messageBox -icon warning -type yesno \ -message $message] |