diff options
author | nijtmans <nijtmans@noemail.net> | 2008-07-24 21:54:38 (GMT) |
---|---|---|
committer | nijtmans <nijtmans@noemail.net> | 2008-07-24 21:54:38 (GMT) |
commit | 99c1f1dc71cec3e87f27d8ed4f2c918e7eef98e2 (patch) | |
tree | d6af35eba3a72d32359fa5a28abd6fe83823567d /win/tclWinNotify.c | |
parent | 637c580f8f148d94744a67ee520647bc5b180866 (diff) | |
download | tcl-99c1f1dc71cec3e87f27d8ed4f2c918e7eef98e2.zip tcl-99c1f1dc71cec3e87f27d8ed4f2c918e7eef98e2.tar.gz tcl-99c1f1dc71cec3e87f27d8ed4f2c918e7eef98e2.tar.bz2 |
CONSTified 4 functions in the Notifier which all have a Tcl_Time* in it which is
supposed to be a constant, but this was not reflected in the API:
Tcl_SetTimer
Tcl_WaitForEvent
Tcl_ConditionWait
Tcl_SetMaxBlockTime
Introduced a CONST86, so extensions which have their own Notifier
(are there any?) can be modified to compile against both Tcl 8.5
and Tcl 8.6. This change complies with TIP #24
FossilOrigin-Name: 7ade6e690e5d9da6d707b6796e656ef6df6565e3
Diffstat (limited to 'win/tclWinNotify.c')
-rw-r--r-- | win/tclWinNotify.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tclWinNotify.c b/win/tclWinNotify.c index 8d19ba2..436d333 100644 --- a/win/tclWinNotify.c +++ b/win/tclWinNotify.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinNotify.c,v 1.23 2008/06/13 05:45:15 mistachkin Exp $ + * RCS: @(#) $Id: tclWinNotify.c,v 1.24 2008/07/24 21:54:43 nijtmans Exp $ */ #include "tclInt.h" @@ -268,7 +268,7 @@ Tcl_AlertNotifier( void Tcl_SetTimer( - Tcl_Time *timePtr) /* Maximum block time, or NULL. */ + const Tcl_Time *timePtr) /* Maximum block time, or NULL. */ { if (tclNotifierHooks.setTimerProc) { tclNotifierHooks.setTimerProc(timePtr); @@ -431,7 +431,7 @@ NotifierProc( int Tcl_WaitForEvent( - Tcl_Time *timePtr) /* Maximum block time, or NULL. */ + const Tcl_Time *timePtr) /* Maximum block time, or NULL. */ { if (tclNotifierHooks.waitForEventProc) { return tclNotifierHooks.waitForEventProc(timePtr); |