diff options
author | dgp <dgp@users.sourceforge.net> | 2008-10-08 15:39:12 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2008-10-08 15:39:12 (GMT) |
commit | d9e14151e9140669c93fd8e8bebdc85d115b2b24 (patch) | |
tree | 857cfa00bbca1af865dda890235a6dbfb19e726e /macosx | |
parent | b00e8aa25e4dcd2a0c38b6ba556e030a2c19c8cf (diff) | |
download | tk-d9e14151e9140669c93fd8e8bebdc85d115b2b24.zip tk-d9e14151e9140669c93fd8e8bebdc85d115b2b24.tar.gz tk-d9e14151e9140669c93fd8e8bebdc85d115b2b24.tar.bz2 |
* unix/tkUnixWm.c: Restored consistency of error messages from
* macosx/tkMacOSXWm.c: [wm iconphoto] with the test suite and across
all platforms. [Bug 2021443]
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/tkMacOSXWm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/tkMacOSXWm.c b/macosx/tkMacOSXWm.c index 8bbb701..0e3544d 100644 --- a/macosx/tkMacOSXWm.c +++ b/macosx/tkMacOSXWm.c @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXWm.c,v 1.68 2008/10/05 21:26:12 dkf Exp $ + * RCS: @(#) $Id: tkMacOSXWm.c,v 1.69 2008/10/08 15:39:13 dgp Exp $ */ #include "tkMacOSXPrivate.h" @@ -1964,14 +1964,14 @@ WmIconphotoCmd( if (objc < 4) { Tcl_WrongNumArgs(interp, 2, objv, - "window ?-default? image ?image ...?"); + "window ?-default? image1 ?image2 ...?"); return TCL_ERROR; } if (strcmp(Tcl_GetString(objv[3]), "-default") == 0) { isDefault = 1; if (objc == 4) { Tcl_WrongNumArgs(interp, 2, objv, - "window ?-default? image ?image ...?"); + "window ?-default? image1 ?image2 ...?"); return TCL_ERROR; } } |