diff options
author | redman <redman> | 1999-03-10 18:28:13 (GMT) |
---|---|---|
committer | redman <redman> | 1999-03-10 18:28:13 (GMT) |
commit | 268b10bef1e28bec3ff403665a96b93313279697 (patch) | |
tree | 1639b6df02ee36c5614741766a596248128f28a0 | |
parent | a94e7ca1e7df98ec2eb7f2a6e38e40bfa45e1a52 (diff) | |
download | tk-268b10bef1e28bec3ff403665a96b93313279697.zip tk-268b10bef1e28bec3ff403665a96b93313279697.tar.gz tk-268b10bef1e28bec3ff403665a96b93313279697.tar.bz2 |
Add TkpMenuThreadInit, which is a noop function.
-rw-r--r-- | mac/tkMacMenu.c | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/mac/tkMacMenu.c b/mac/tkMacMenu.c index 8b1f80e..4fc6ddd 100644 --- a/mac/tkMacMenu.c +++ b/mac/tkMacMenu.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacMenu.c,v 1.1.4.6 1999/02/16 11:39:34 lfb Exp $ + * RCS: @(#) $Id: tkMacMenu.c,v 1.1.4.7 1999/03/10 18:28:13 redman Exp $ */ #include <Menus.h> @@ -4387,3 +4387,28 @@ TkpMenuInit(void) Tcl_ExternalToUtf(NULL, NULL, "É", -1, 0, NULL, elipsisString, TCL_UTF_MAX + 1, NULL, NULL, NULL); } + +/* + *---------------------------------------------------------------------- + * + * TkpMenuThreadInit -- + * + * Does platform-specific initialization of thread-specific + * menu state. + * + * Results: + * None. + * + * Side effects: + * None. + * + *---------------------------------------------------------------------- + */ + +void +TkpMenuThreadInit() +{ + /* + * Nothing to do. + */ +} |