diff options
author | nijtmans <nijtmans> | 2008-11-05 23:29:58 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2008-11-05 23:29:58 (GMT) |
commit | 608b402de7d6d65c3c82aac6ea0129e3a1ac678f (patch) | |
tree | 626c6ea0d3ed4bc4582739c3db430d78150c54d6 /generic/tkInt.decls | |
parent | e0977490442f27f40657b3b80d060d8b832b4158 (diff) | |
download | tk-608b402de7d6d65c3c82aac6ea0129e3a1ac678f.zip tk-608b402de7d6d65c3c82aac6ea0129e3a1ac678f.tar.gz tk-608b402de7d6d65c3c82aac6ea0129e3a1ac678f.tar.bz2 |
no need to use CONST in internal header files
Diffstat (limited to 'generic/tkInt.decls')
-rw-r--r-- | generic/tkInt.decls | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tkInt.decls b/generic/tkInt.decls index 3e09fd4..6864169 100644 --- a/generic/tkInt.decls +++ b/generic/tkInt.decls @@ -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: tkInt.decls,v 1.48 2008/11/05 22:48:58 nijtmans Exp $ +# RCS: @(#) $Id: tkInt.decls,v 1.49 2008/11/05 23:29:58 nijtmans Exp $ library tk @@ -72,7 +72,7 @@ declare 12 generic { } declare 13 generic { int TkCreateFrame(ClientData clientData, Tcl_Interp *interp, - int argc, CONST86 char *const *argv, int toplevel, const char *appName) + int argc, const char *const *argv, int toplevel, const char *appName) } declare 14 generic { Tk_Window TkCreateMainWindow(Tcl_Interp *interp, @@ -142,7 +142,7 @@ declare 32 generic { Tk_Window tkwin, Tk_Uid string) } declare 33 generic { - CONST84_RETURN char *TkGetDefaultScreenName(Tcl_Interp *interp, + const char *TkGetDefaultScreenName(Tcl_Interp *interp, const char *screenName) } declare 34 generic { |