diff options
author | hobbs <hobbs> | 2001-05-30 22:41:11 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2001-05-30 22:41:11 (GMT) |
commit | 5335a16b84527d802904634e6cbfd8d4d532cabe (patch) | |
tree | 790f8e5b02175a8d12ff79890f8fdfe1d178233a /win | |
parent | 06d05d92f1cda1439dd42324387e00923e4070e6 (diff) | |
download | tk-5335a16b84527d802904634e6cbfd8d4d532cabe.zip tk-5335a16b84527d802904634e6cbfd8d4d532cabe.tar.gz tk-5335a16b84527d802904634e6cbfd8d4d532cabe.tar.bz2 |
win/tkWinKey.c (TkpSetKeycodeAndState): removed old debug info
Diffstat (limited to 'win')
-rw-r--r-- | win/tkWinKey.c | 10 |
1 files changed, 1 insertions, 9 deletions
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); - } - } } /* |