diff options
author | rjohnson <rjohnson@noemail.net> | 1998-07-27 17:29:43 (GMT) |
---|---|---|
committer | rjohnson <rjohnson@noemail.net> | 1998-07-27 17:29:43 (GMT) |
commit | c6afdf314d8ff91775aceea340fd16e3bc88d6d7 (patch) | |
tree | 7e5ade73876702bd88bcbdefcd89fbc18b2307d8 /generic | |
parent | bf9041383340917580eb5e9ae6041317d2a8923a (diff) | |
download | tk-c6afdf314d8ff91775aceea340fd16e3bc88d6d7.zip tk-c6afdf314d8ff91775aceea340fd16e3bc88d6d7.tar.gz tk-c6afdf314d8ff91775aceea340fd16e3bc88d6d7.tar.bz2 |
changed to use CONST
FossilOrigin-Name: 2a7cb0663595db5a5047da96d022fd244e08b366
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tkInt.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tkInt.h b/generic/tkInt.h index a00e364..86251df 100644 --- a/generic/tkInt.h +++ b/generic/tkInt.h @@ -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. * - * SCCS: %Z% $Id: tkInt.h,v 1.2 1998/07/24 16:44:01 rjohnson Exp $ + * SCCS: %Z% $Id: tkInt.h,v 1.3 1998/07/27 17:29:44 rjohnson Exp $ */ #ifndef _TKINT @@ -738,7 +738,7 @@ EXTERN unsigned long TkCreateBindingProcedure _ANSI_ARGS_(( TkBindEvalProc *evalProc, TkBindFreeProc *freeProc, ClientData clientData)); EXTERN Pixmap TkCreateBitmapFromData _ANSI_ARGS_((Display* display, - Drawable d, _Xconst char* data, + Drawable d, CONST char* data, unsigned int width, unsigned int height)); EXTERN TkCursor * TkCreateCursorFromData _ANSI_ARGS_((Tk_Window tkwin, char *source, char *mask, int width, int height, @@ -936,7 +936,7 @@ EXTERN void TkQueueEventForAllChildren _ANSI_ARGS_(( TkWindow *winPtr, XEvent *eventPtr)); #ifndef TkRectInRegion EXTERN int TkReadBitmapFile _ANSI_ARGS_((Display* display, - Drawable d, _Xconst char* filename, + Drawable d, CONST char* filename, unsigned int* width_return, unsigned int* height_return, Pixmap* bitmap_return, |