diff options
author | kennykb <kennykb@noemail.net> | 2004-11-30 18:40:26 (GMT) |
---|---|---|
committer | kennykb <kennykb@noemail.net> | 2004-11-30 18:40:26 (GMT) |
commit | 1ad66b9a308466a4c7c3292ad7ae0ee99cc842c4 (patch) | |
tree | f1498de7acfd542f5bb2413db98d367686453f38 | |
parent | c99c6c8453a9f03eff7cce1609daf83a63f769cf (diff) | |
download | tcl-1ad66b9a308466a4c7c3292ad7ae0ee99cc842c4.zip tcl-1ad66b9a308466a4c7c3292ad7ae0ee99cc842c4.tar.gz tcl-1ad66b9a308466a4c7c3292ad7ae0ee99cc842c4.tar.bz2 |
corrected a typo that caused a compilation failure on VC++
FossilOrigin-Name: d45737011c3ea185a7475a5756f204d78560adcc
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | win/tclWinDde.c | 4 |
2 files changed, 6 insertions, 3 deletions
@@ -3,7 +3,10 @@ * library/clock.tcl: Corrected the regular expressions that match a time zone to allow for time zones specified as +HH or -HH. * tests/clock.test: Added regression test case for the above issue. - Thanks to Rolf Ade for reporting this issue [http://wiki.tcl.tk/13094] + Thanks to Rolf Ade for reporting this issue + [http://wiki.tcl.tk/13094] + * win/tclWinDde.c (Tcl_DdeObjCmd): Corrected a typo that caused a + compilation failure on VC++. 2004-11-29 Andreas Kupries <andreask@activestate.com> diff --git a/win/tclWinDde.c b/win/tclWinDde.c index 88c889e..023a037 100644 --- a/win/tclWinDde.c +++ b/win/tclWinDde.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinDde.c,v 1.25 2004/11/26 20:02:28 andreas_kupries Exp $ + * RCS: @(#) $Id: tclWinDde.c,v 1.26 2004/11/30 18:40:33 kennykb Exp $ */ #include "tclInt.h" @@ -1327,7 +1327,7 @@ Tcl_DdeObjCmd(clientData, interp, objc, objv) } } - switch ((enum DdeSubcommand) index) { + switch ((enum DdeSubcommands) index) { case DDE_SERVERNAME: serviceName = DdeSetServerName(interp, serviceName, exact, handlerPtr); if (serviceName != NULL) { |