summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpatthoyts <patthoyts@noemail.net>2003-07-31 22:17:14 (GMT)
committerpatthoyts <patthoyts@noemail.net>2003-07-31 22:17:14 (GMT)
commit9513fa4fdd29907ddc93f603dca9e2dfcce42b34 (patch)
tree68b3a42f62c07b0cc207ccaa115597f646ed9999
parent5b0b3bd70c5698427272c5ae9a4794cc4a68b58c (diff)
downloadtk-9513fa4fdd29907ddc93f603dca9e2dfcce42b34.zip
tk-9513fa4fdd29907ddc93f603dca9e2dfcce42b34.tar.gz
tk-9513fa4fdd29907ddc93f603dca9e2dfcce42b34.tar.bz2
Fixed stupid typo.
FossilOrigin-Name: 06a3ac2ea8185cefc3b99f1a74c9a6290edb6be5
-rw-r--r--library/tk.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/tk.tcl b/library/tk.tcl
index 5b75b2a..040d741 100644
--- a/library/tk.tcl
+++ b/library/tk.tcl
@@ -3,7 +3,7 @@
# Initialization script normally executed in the interpreter for each
# Tk-based application. Arranges class bindings for widgets.
#
-# RCS: @(#) $Id: tk.tcl,v 1.49 2003/07/28 21:14:12 patthoyts Exp $
+# RCS: @(#) $Id: tk.tcl,v 1.50 2003/07/31 22:17:14 patthoyts Exp $
#
# Copyright (c) 1992-1994 The Regents of the University of California.
# Copyright (c) 1994-1996 Sun Microsystems, Inc.
@@ -100,7 +100,7 @@ proc ::tk::PlaceWindow {w {place ""} {anchor ""}} {
set y [expr {([winfo screenheight $w]-[winfo reqheight $w])/2}]
set checkBounds 0
}
- if {[tk windowingsystem eq "win32"]} {
+ if {[tk windowingsystem] eq "win32"} {
# Bug 533519: win32 multiple desktops may produce negative geometry.
set checkBounds 0
}