diff options
author | dgp@users.sourceforge.net <dgp> | 2001-08-01 16:21:11 (GMT) |
---|---|---|
committer | dgp@users.sourceforge.net <dgp> | 2001-08-01 16:21:11 (GMT) |
commit | 73da871c94ff66eb9b314fb09a75a7124968bbd4 (patch) | |
tree | 38846cbe94cc8aac068898282ced4624f130770e /mac | |
parent | 2acf69a713e833db0ee374542978d48ef0ee583e (diff) | |
download | tk-73da871c94ff66eb9b314fb09a75a7124968bbd4.zip tk-73da871c94ff66eb9b314fb09a75a7124968bbd4.tar.gz tk-73da871c94ff66eb9b314fb09a75a7124968bbd4.tar.bz2 |
Merged changes from feature branch dgp-privates-into-namespace,
implementing TIP 44. All Tk commands and variables matching
tk[A-Z]* are now in the ::tk namespace.
Diffstat (limited to 'mac')
-rw-r--r-- | mac/tkMacMenu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mac/tkMacMenu.c b/mac/tkMacMenu.c index c0db274..152bb1e 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.18 2000/02/10 08:55:47 jingham Exp $ + * RCS: @(#) $Id: tkMacMenu.c,v 1.19 2001/08/01 16:21:11 dgp Exp $ */ #include "tkMacInt.h" @@ -3340,7 +3340,7 @@ TkMacHandleTearoffMenu(void) if (windowPart != inMenuBar) { Tcl_DStringInit(&tearoffCmdStr); - Tcl_DStringAppendElement(&tearoffCmdStr, "tkTearOffMenu"); + Tcl_DStringAppendElement(&tearoffCmdStr, "tk::TearOffMenu"); Tcl_DStringAppendElement(&tearoffCmdStr, Tk_PathName(tearoffStruct.menuPtr->tkwin)); sprintf(intString, "%d", tearoffStruct.point.h); |