diff options
author | mdejong <mdejong@noemail.net> | 2002-06-14 23:49:12 (GMT) |
---|---|---|
committer | mdejong <mdejong@noemail.net> | 2002-06-14 23:49:12 (GMT) |
commit | b31f33897cdffce07d65b8579f3a624d91984843 (patch) | |
tree | 25a83fd7a9e43641fe306a2572bfd71593156a1c /generic/tkEvent.c | |
parent | 4e7c95bf48b846ddf7e9f26b71f1c4868101c5da (diff) | |
download | tk-b31f33897cdffce07d65b8579f3a624d91984843.zip tk-b31f33897cdffce07d65b8579f3a624d91984843.tar.gz tk-b31f33897cdffce07d65b8579f3a624d91984843.tar.bz2 |
* generic/tkBind.c (TkXErrorHandler): Declare static
function to avoid compiler error with VC++.
FossilOrigin-Name: 1eb4ae1d266d719689de32e27eac4f61eb2f8a20
Diffstat (limited to 'generic/tkEvent.c')
-rw-r--r-- | generic/tkEvent.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tkEvent.c b/generic/tkEvent.c index 4f40873..68887f1 100644 --- a/generic/tkEvent.c +++ b/generic/tkEvent.c @@ -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. * - * RCS: @(#) $Id: tkEvent.c,v 1.10 2002/06/14 22:25:12 jenglish Exp $ + * RCS: @(#) $Id: tkEvent.c,v 1.11 2002/06/14 23:49:13 mdejong Exp $ */ #include "tkPort.h" @@ -161,6 +161,8 @@ static Tcl_ThreadDataKey dataKey; static void DelayedMotionProc _ANSI_ARGS_((ClientData clientData)); static int WindowEventProc _ANSI_ARGS_((Tcl_Event *evPtr, int flags)); +static int TkXErrorHandler _ANSI_ARGS_((ClientData clientData, + XErrorEvent *errEventPtr)); /* |