diff options
author | dgp <dgp@users.sourceforge.net> | 2005-12-01 18:31:42 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-12-01 18:31:42 (GMT) |
commit | 277158cf072d9b7124bc4fb69806afac0a0b998c (patch) | |
tree | b33e795f5a24dae1e091df33e8219c946033da84 /win | |
parent | f68d0a0e2f46385c06b1a65863da5d99e42c1abb (diff) | |
download | tk-277158cf072d9b7124bc4fb69806afac0a0b998c.zip tk-277158cf072d9b7124bc4fb69806afac0a0b998c.tar.gz tk-277158cf072d9b7124bc4fb69806afac0a0b998c.tar.bz2 |
2005-11-16 Don Porter <dgp@users.sourceforge.net>
*** 8.4.12 TAGGED FOR RELEASE ***
* changes: Update changes for 8.4.12 release
* mac/tkMacWm.c: Restored consistent error checking and
* macosx/tkMacOSXWm.c: messages among different platform's
* tests/wm.test: [wm grid] commands. [Bug 1323972].
* win/tkWinWm.c:
Diffstat (limited to 'win')
-rw-r--r-- | win/tkWinWm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tkWinWm.c b/win/tkWinWm.c index 4db7a24..38a1297 100644 --- a/win/tkWinWm.c +++ b/win/tkWinWm.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkWinWm.c,v 1.54.2.22 2005/12/01 07:34:54 hobbs Exp $ + * RCS: @(#) $Id: tkWinWm.c,v 1.54.2.23 2005/12/01 18:31:43 dgp Exp $ */ #include "tkWinInt.h" @@ -3579,11 +3579,11 @@ WmGridCmd(tkwin, winPtr, interp, objc, objv) return TCL_ERROR; } if (widthInc <= 0) { - Tcl_SetResult(interp, "widthInc can't be < 0", TCL_STATIC); + Tcl_SetResult(interp, "widthInc can't be <= 0", TCL_STATIC); return TCL_ERROR; } if (heightInc <= 0) { - Tcl_SetResult(interp, "heightInc can't be < 0", TCL_STATIC); + Tcl_SetResult(interp, "heightInc can't be <= 0", TCL_STATIC); return TCL_ERROR; } Tk_SetGrid((Tk_Window) winPtr, reqWidth, reqHeight, widthInc, |