diff options
author | hobbs <hobbs> | 1999-12-15 19:27:27 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-12-15 19:27:27 (GMT) |
commit | 7607aa1b4fa1e27f6da464729e961f510627ea13 (patch) | |
tree | 2d6097c8a7f9de3d21ecc67239f82c8d1bf78048 /generic | |
parent | 55badd95942577c6f6b3b630792db4f766cf609e (diff) | |
download | tk-7607aa1b4fa1e27f6da464729e961f510627ea13.zip tk-7607aa1b4fa1e27f6da464729e961f510627ea13.tar.gz tk-7607aa1b4fa1e27f6da464729e961f510627ea13.tar.bz2 |
added declaration for PhotoOptionCleanupProc to prevent warning
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tkImgPhoto.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tkImgPhoto.c b/generic/tkImgPhoto.c index 75694c0..3ddf72e 100644 --- a/generic/tkImgPhoto.c +++ b/generic/tkImgPhoto.c @@ -15,7 +15,7 @@ * Department of Computer Science, * Australian National University. * - * RCS: @(#) $Id: tkImgPhoto.c,v 1.11 1999/12/14 06:52:28 hobbs Exp $ + * RCS: @(#) $Id: tkImgPhoto.c,v 1.12 1999/12/15 19:27:27 hobbs Exp $ */ #include "tkInt.h" @@ -399,6 +399,8 @@ static Tcl_ObjCmdProc * PhotoOptionFind _ANSI_ARGS_((Tcl_Interp * interp, Tcl_Obj *obj)); static void DitherInstance _ANSI_ARGS_((PhotoInstance *instancePtr, int x, int y, int width, int height)); +static void PhotoOptionCleanupProc _ANSI_ARGS_(( + ClientData clientData, Tcl_Interp *interp)); #undef MIN #define MIN(a, b) ((a) < (b)? (a): (b)) |