diff options
author | das <das> | 2006-10-31 22:33:38 (GMT) |
---|---|---|
committer | das <das> | 2006-10-31 22:33:38 (GMT) |
commit | 186128bc03cce2f6497a753f1940227187dcc4aa (patch) | |
tree | e3d83a3269a13bfac631d4287ef7adee4286d144 /macosx/tkMacOSXEvent.c | |
parent | ee8611570c943c62dfe364654e24eabc99428e93 (diff) | |
download | tk-186128bc03cce2f6497a753f1940227187dcc4aa.zip tk-186128bc03cce2f6497a753f1940227187dcc4aa.tar.gz tk-186128bc03cce2f6497a753f1940227187dcc4aa.tar.bz2 |
* macosx/tkMacOSXDebug.c: add TkMacOSX prefix to leftover macosx-private
* macosx/tkMacOSXDebug.h: global symbols without Tk prefix; ifdef out
* macosx/tkMacOSXEmbed.c: currently unused debug procs.
* macosx/tkMacOSXEvent.c:
* macosx/tkMacOSXInt.h:
* macosx/tkMacOSXCarbonEvents.c:
* macosx/tkMacOSXSubwindows.c:
* macosx/tkMacOSXWm.c:
Diffstat (limited to 'macosx/tkMacOSXEvent.c')
-rw-r--r-- | macosx/tkMacOSXEvent.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/tkMacOSXEvent.c b/macosx/tkMacOSXEvent.c index 6b6e4ff..2427155 100644 --- a/macosx/tkMacOSXEvent.c +++ b/macosx/tkMacOSXEvent.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: tkMacOSXEvent.c,v 1.3.2.8 2006/05/12 18:17:55 das Exp $ + * RCS: @(#) $Id: tkMacOSXEvent.c,v 1.3.2.9 2006/10/31 22:33:38 das Exp $ */ #include "tkMacOSXInt.h" @@ -99,7 +99,7 @@ TkMacOSXProcessEvent(TkMacOSXEvent * eventPtr, MacEventStatus * statusPtr) char buf [256]; fprintf(stderr, "Unrecognised event : %s\n", - CarbonEventToAscii(eventPtr->eventRef, buf)); + TkMacOSXCarbonEventToAscii(eventPtr->eventRef, buf)); } #endif break; @@ -282,7 +282,7 @@ TkMacOSXReceiveAndProcessEvent() char buf [256]; fprintf(stderr, "RCNE SendEventToEventTarget (%s) failed, %d\n", - CarbonEventToAscii(eventRef, buf), (int)err); + TkMacOSXCarbonEventToAscii(eventRef, buf), (int)err); } #endif ReleaseEvent(eventRef); |