summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2001-07-03 14:59:24 (GMT)
committerdkf <dkf@noemail.net>2001-07-03 14:59:24 (GMT)
commit6f15854c8dc5a39bb98bfd3cdfe6fc586bb119ae (patch)
treec7b93b3ffc0e170574c067c6f6f696119259045b /library
parentc2d0c710284eee6a9b95eb2489198651864f1444 (diff)
downloadtk-6f15854c8dc5a39bb98bfd3cdfe6fc586bb119ae.zip
tk-6f15854c8dc5a39bb98bfd3cdfe6fc586bb119ae.tar.gz
tk-6f15854c8dc5a39bb98bfd3cdfe6fc586bb119ae.tar.bz2
Added missing backslash in Motif File Selector code.
FossilOrigin-Name: 227ace3f95ca2dff12175142c9f8f6e7e49563a1
Diffstat (limited to 'library')
-rw-r--r--library/xmfbox.tcl4
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]