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 /unix | |
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 'unix')
-rw-r--r-- | unix/tkUnixWm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/tkUnixWm.c b/unix/tkUnixWm.c index ab75626..7c02a8a 100644 --- a/unix/tkUnixWm.c +++ b/unix/tkUnixWm.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: tkUnixWm.c,v 1.61 2008/10/05 18:22:21 dkf Exp $ + * RCS: @(#) $Id: tkUnixWm.c,v 1.62 2008/10/08 15:39:13 dgp Exp $ */ #include "tkUnixInt.h" @@ -2344,14 +2344,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; } } |