diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | win/tkWinX.c | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2005-08-20 Joe Mistachkin <joe@mistachkin.com> + + * win/tkWinX.c: Fixed bad cast. [Bug 1216006] + 2005-08-18 Donal K. Fellows <donal.k.fellows@manchester.ac.uk> * doc/GetFont.3: Reworded to reflect the truth. [Bug 1151523] diff --git a/win/tkWinX.c b/win/tkWinX.c index a99932f..d13e59a 100644 --- a/win/tkWinX.c +++ b/win/tkWinX.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: tkWinX.c,v 1.48 2005/07/23 03:06:25 mdejong Exp $ + * RCS: @(#) $Id: tkWinX.c,v 1.49 2005/08/21 03:29:22 mistachkin Exp $ */ /* @@ -1927,7 +1927,7 @@ Tk_ResetUserInactiveTime(dpy) inp.mi.mouseData = 0; inp.mi.dwFlags = MOUSEEVENTF_MOVE; inp.mi.time = 0; - inp.mi.dwExtraInfo = (ULONG_PTR) NULL; + inp.mi.dwExtraInfo = (DWORD) NULL; SendInput(1, &inp, sizeof(inp)); } |