diff options
author | rjohnson <rjohnson> | 1998-07-27 17:29:44 (GMT) |
---|---|---|
committer | rjohnson <rjohnson> | 1998-07-27 17:29:44 (GMT) |
commit | 34245744f76e6b5a1cc0317fa577a9ad43f22b55 (patch) | |
tree | 7e5ade73876702bd88bcbdefcd89fbc18b2307d8 /generic | |
parent | 2777f8b526f0019372874c38eb127e1d27371c87 (diff) | |
download | tk-34245744f76e6b5a1cc0317fa577a9ad43f22b55.zip tk-34245744f76e6b5a1cc0317fa577a9ad43f22b55.tar.gz tk-34245744f76e6b5a1cc0317fa577a9ad43f22b55.tar.bz2 |
changed to use CONST
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, |