diff options
author | dgp <dgp@noemail.net> | 2002-01-25 21:09:35 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2002-01-25 21:09:35 (GMT) |
commit | 2662a3d30282b46108055b6087a7235df796d58e (patch) | |
tree | 2041d0c0de9f76a800e1af4c067e78376fbdd570 /generic/tkInt.decls | |
parent | 00a5c8508adb8715e08eb3a265d58206e7ee3f2d (diff) | |
download | tk-2662a3d30282b46108055b6087a7235df796d58e.zip tk-2662a3d30282b46108055b6087a7235df796d58e.tar.gz tk-2662a3d30282b46108055b6087a7235df796d58e.tar.bz2 |
* Updated callers of Tcl_SplitList and Tcl_Merge.
* Updated callers of Tcl_GetStringResult.
Rewrote PrintScrollFractions to ScrollFractions to stop scribbling
directly on interp->result.
* Updated callers of Tcl_GetVar, Tcl_GetVar2
* Updated callers of Tcl_SplitPath, Tcl_JoinPath, and
Tcl_TranslateFileName.
FossilOrigin-Name: 933dcfe881579bb3925ff2a05e925a0bd8d67087
Diffstat (limited to 'generic/tkInt.decls')
-rw-r--r-- | generic/tkInt.decls | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/generic/tkInt.decls b/generic/tkInt.decls index 4a0593e..38f7dd4 100644 --- a/generic/tkInt.decls +++ b/generic/tkInt.decls @@ -9,7 +9,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.23 2001/12/04 03:07:43 mdejong Exp $ +# RCS: @(#) $Id: tkInt.decls,v 1.24 2002/01/25 21:09:37 dgp Exp $ library tk @@ -178,7 +178,8 @@ declare 32 generic { } declare 33 generic { - char * TkGetDefaultScreenName (Tcl_Interp *interp, char *screenName) + CONST char * TkGetDefaultScreenName (Tcl_Interp *interp, \ + CONST char *screenName) } declare 34 generic { @@ -287,7 +288,7 @@ declare 57 generic { } declare 58 generic { - void TkpDisplayWarning (char *msg, char *title) + void TkpDisplayWarning (CONST char *msg, CONST char *title) } declare 59 generic { @@ -328,7 +329,7 @@ declare 67 generic { } declare 68 generic { - TkDisplay * TkpOpenDisplay (char *display_name) + TkDisplay * TkpOpenDisplay (CONST char *display_name) } declare 69 generic { @@ -1366,7 +1367,7 @@ declare 61 win { } declare 62 win { - void XSetCommand (Display* d, Window w, char** c, int i) + void XSetCommand (Display* d, Window w, CONST char** c, int i) } declare 63 win { |