summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2001-07-03 14:59:25 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2001-07-03 14:59:25 (GMT)
commit4d6f85b90c588fb25fe632fa2cc5a44a26e9a324 (patch)
treec7b93b3ffc0e170574c067c6f6f696119259045b
parent828e491755404c0fc718cf5fe6b083f486a426a8 (diff)
downloadtk-4d6f85b90c588fb25fe632fa2cc5a44a26e9a324.zip
tk-4d6f85b90c588fb25fe632fa2cc5a44a26e9a324.tar.gz
tk-4d6f85b90c588fb25fe632fa2cc5a44a26e9a324.tar.bz2
Added missing backslash in Motif File Selector code.
-rw-r--r--ChangeLog5
-rw-r--r--library/xmfbox.tcl4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 5f220a1..a27bd1b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-07-03 Donal K. Fellows <fellowsd@cs.man.ac.uk>
+
+ * library/xmfbox.tcl (tkMotifFDialog_ActivateSEnt): Added missing
+ backslash [Bug #438247]
+
2001-07-02 Jeff Hobbs <jeffh@ActiveState.com>
* generic/tkWindow.c (Tk_DestroyWindow): changed to use
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]