diff options
author | stanton <stanton@noemail.net> | 1998-07-28 17:28:33 (GMT) |
---|---|---|
committer | stanton <stanton@noemail.net> | 1998-07-28 17:28:33 (GMT) |
commit | 74b6b9934fdae1cdb32dc0da1982fa67eac1e1f2 (patch) | |
tree | a60f60a5482989423433c06e1e4249f09b70e9dd /generic | |
parent | c6afdf314d8ff91775aceea340fd16e3bc88d6d7 (diff) | |
download | tk-74b6b9934fdae1cdb32dc0da1982fa67eac1e1f2.zip tk-74b6b9934fdae1cdb32dc0da1982fa67eac1e1f2.tar.gz tk-74b6b9934fdae1cdb32dc0da1982fa67eac1e1f2.tar.bz2 |
fixed bad ifdef
FossilOrigin-Name: 741b9429678e7e984ca7c31d5f32a8282183496b
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tkInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkInt.h b/generic/tkInt.h index 86251df..39142a2 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.3 1998/07/27 17:29:44 rjohnson Exp $ + * SCCS: %Z% $Id: tkInt.h,v 1.4 1998/07/28 17:28:33 stanton Exp $ */ #ifndef _TKINT @@ -934,13 +934,13 @@ EXTERN void TkpWmSetState _ANSI_ARGS_((TkWindow *winPtr, int state)); EXTERN void TkQueueEventForAllChildren _ANSI_ARGS_(( TkWindow *winPtr, XEvent *eventPtr)); -#ifndef TkRectInRegion EXTERN int TkReadBitmapFile _ANSI_ARGS_((Display* display, Drawable d, CONST char* filename, unsigned int* width_return, unsigned int* height_return, Pixmap* bitmap_return, int* x_hot_return, int* y_hot_return)); +#ifndef TkRectInRegion EXTERN int TkRectInRegion _ANSI_ARGS_((TkRegion rgn, int x, int y, unsigned int width, unsigned int height)); |