summaryrefslogtreecommitdiffstats
path: root/win/tkWinX.c
diff options
context:
space:
mode:
authorhobbs <hobbs>1999-11-19 22:00:19 (GMT)
committerhobbs <hobbs>1999-11-19 22:00:19 (GMT)
commit22297e2b0a9fc24e13686771ff54709746ed0310 (patch)
tree20c1116802a85020ea150be5862058a28d32e732 /win/tkWinX.c
parent3fd1d29ce817601c769d7549d8f3c9bec8d49539 (diff)
downloadtk-22297e2b0a9fc24e13686771ff54709746ed0310.zip
tk-22297e2b0a9fc24e13686771ff54709746ed0310.tar.gz
tk-22297e2b0a9fc24e13686771ff54709746ed0310.tar.bz2
* win/tkWinInt.h: removed TkFontAttributes typedef (was
redundant with tkFont.h). * win/tkWinPort.h: put #ifndef __GNUC__ around redefinition of str[n]casecmp, as cygwin uses the originals. * win/tkWinX.c: changed GetCurrentTime to GetTickCount (the former is deprecated). [Bug: 2053]
Diffstat (limited to 'win/tkWinX.c')
-rw-r--r--win/tkWinX.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tkWinX.c b/win/tkWinX.c
index 85becc2..e60d001 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.6 1999/07/09 02:10:07 stanton Exp $
+ * RCS: @(#) $Id: tkWinX.c,v 1.7 1999/11/19 22:00:19 hobbs Exp $
*/
#include "tkWinInt.h"
@@ -1128,5 +1128,5 @@ TkWinResendEvent(wndproc, hwnd, eventPtr)
unsigned long
TkpGetMS()
{
- return GetCurrentTime();
+ return GetTickCount();
}