summaryrefslogtreecommitdiffstats
path: root/tests/focusTcl.test
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2002-07-14 15:45:23 (GMT)
committerdgp <dgp@users.sourceforge.net>2002-07-14 15:45:23 (GMT)
commitefa6765c00d4032ecb45bf70e9147ed49e994663 (patch)
tree122760106146221f00d3763ee947ddd58d787767 /tests/focusTcl.test
parentf79b432c7c47051e0c7e11bd52e82547ad7aacf2 (diff)
downloadtk-efa6765c00d4032ecb45bf70e9147ed49e994663.zip
tk-efa6765c00d4032ecb45bf70e9147ed49e994663.tar.gz
tk-efa6765c00d4032ecb45bf70e9147ed49e994663.tar.bz2
* tests/focustTcl.test: Conversion bug: Corrected backwards logic.
* tests/imgPhoto.test: Conversion bug: overwrote unix/README.
Diffstat (limited to 'tests/focusTcl.test')
-rw-r--r--tests/focusTcl.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/focusTcl.test b/tests/focusTcl.test
index decc824..db064e0 100644
--- a/tests/focusTcl.test
+++ b/tests/focusTcl.test
@@ -7,7 +7,7 @@
# Copyright (c) 1998-1999 by Scriptics Corporation.
# All rights reserved.
#
-# RCS: @(#) $Id: focusTcl.test,v 1.4 2002/07/14 05:48:46 dgp Exp $
+# RCS: @(#) $Id: focusTcl.test,v 1.5 2002/07/14 15:45:23 dgp Exp $
package require tcltest 2.1
namespace import -force tcltest::configure
@@ -29,7 +29,7 @@ proc setup1 w {
button $w.b.$i -text "Button $w.b.$i"
pack $w.b.$i -side left
}
- if {[winfo ismapped $w.b.z]} {
+ if {![winfo ismapped $w.b.z]} {
tkwait visibility $w.b.z
}
}