diff options
author | vincentdarley <vincentdarley> | 2002-08-14 15:31:21 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2002-08-14 15:31:21 (GMT) |
commit | 2ef516f29db94e05730be54dcbb6ce0346e9b08d (patch) | |
tree | 57db136414a0d910f8cbaeff3898dad98167f543 /win/tkWinTest.c | |
parent | c42a2423c64002a8cc53dd48a0ba96c6664e7c9a (diff) | |
download | tk-2ef516f29db94e05730be54dcbb6ce0346e9b08d.zip tk-2ef516f29db94e05730be54dcbb6ce0346e9b08d.tar.gz tk-2ef516f29db94e05730be54dcbb6ce0346e9b08d.tar.bz2 |
compilation, link fixes
Diffstat (limited to 'win/tkWinTest.c')
-rw-r--r-- | win/tkWinTest.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tkWinTest.c b/win/tkWinTest.c index ce0259d..c02a036 100644 --- a/win/tkWinTest.c +++ b/win/tkWinTest.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkWinTest.c,v 1.6 2002/02/08 02:57:11 dgp Exp $ + * RCS: @(#) $Id: tkWinTest.c,v 1.7 2002/08/14 15:31:21 vincentdarley Exp $ */ #include "tkWinInt.h" @@ -27,7 +27,7 @@ static int TestclipboardObjCmd(ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[]); static int TestwineventCmd(ClientData clientData, - Tcl_Interp *interp, int argc, char **argv); + Tcl_Interp *interp, int argc, CONST char **argv); /* @@ -228,7 +228,7 @@ TestwineventCmd(clientData, interp, argc, argv) ClientData clientData; /* Main window for application. */ Tcl_Interp *interp; /* Current interpreter. */ int argc; /* Number of arguments. */ - char **argv; /* Argument strings. */ + CONST char **argv; /* Argument strings. */ { HWND hwnd = 0; int id; |