summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhobbs <hobbs>2001-05-30 22:41:11 (GMT)
committerhobbs <hobbs>2001-05-30 22:41:11 (GMT)
commit5335a16b84527d802904634e6cbfd8d4d532cabe (patch)
tree790f8e5b02175a8d12ff79890f8fdfe1d178233a
parent06d05d92f1cda1439dd42324387e00923e4070e6 (diff)
downloadtk-5335a16b84527d802904634e6cbfd8d4d532cabe.zip
tk-5335a16b84527d802904634e6cbfd8d4d532cabe.tar.gz
tk-5335a16b84527d802904634e6cbfd8d4d532cabe.tar.bz2
win/tkWinKey.c (TkpSetKeycodeAndState): removed old debug info
-rw-r--r--ChangeLog10
-rw-r--r--win/tkWinKey.c10
2 files changed, 11 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index 10ec883..cd18ea3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2001-05-30 Jeff Hobbs <jeffh@ActiveState.com>
+
+ * win/tkWinKey.c (TkpSetKeycodeAndState): removed old debug info
+
+2001-05-29 Jeff Hobbs <jeffh@ActiveState.com>
+
+ * win/tkWinX.c: moved the initialization of tkPlatformId from
+ TkWinXInit to TkWinGetPlatformId because static builds could call
+ it before it was initialized. [Bug #427278]
+
2001-05-28 Peter Spjuth <peter.spjuth@space.se>
* generic/tkFrame.c:
diff --git a/win/tkWinKey.c b/win/tkWinKey.c
index e2b67dd..7f5a338 100644
--- a/win/tkWinKey.c
+++ b/win/tkWinKey.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkWinKey.c,v 1.13 2001/03/30 23:50:17 hobbs Exp $
+ * RCS: @(#) $Id: tkWinKey.c,v 1.14 2001/05/30 22:41:11 hobbs Exp $
*/
#include "tkWinInt.h"
@@ -584,14 +584,6 @@ TkpSetKeycodeAndState(tkwin, keySym, eventPtr)
eventPtr->xkey.keycode = (KeyCode) (result & 0xff);
}
}
- {
- /* Debug log */
- FILE *fp = fopen("c:\\temp\\tklog.txt", "a");
- if (fp != NULL) {
- fprintf(fp, "TkpSetKeycode. Keycode %d State %d Keysym %d\n", eventPtr->xkey.keycode, eventPtr->xkey.state, keySym);
- fclose(fp);
- }
- }
}
/*