summaryrefslogtreecommitdiffstats
path: root/macosx/tkMacOSXSysTray.c
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2020-11-14 22:16:21 (GMT)
committerfvogel <fvogelnew1@free.fr>2020-11-14 22:16:21 (GMT)
commit2c558e59142e62c66b474b4632956ab5c0277d9b (patch)
tree6067644037b09d2010414d3e11e4960d2cfe6ad4 /macosx/tkMacOSXSysTray.c
parent32e8cb9819341b4718e355896cb41879e1f57787 (diff)
downloadtk-2c558e59142e62c66b474b4632956ab5c0277d9b.zip
tk-2c558e59142e62c66b474b4632956ab5c0277d9b.tar.gz
tk-2c558e59142e62c66b474b4632956ab5c0277d9b.tar.bz2
Move _systray and _sysnotify out of the global namespace
Diffstat (limited to 'macosx/tkMacOSXSysTray.c')
-rw-r--r--macosx/tkMacOSXSysTray.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/tkMacOSXSysTray.c b/macosx/tkMacOSXSysTray.c
index 2eb86b6..44ba123 100644
--- a/macosx/tkMacOSXSysTray.c
+++ b/macosx/tkMacOSXSysTray.c
@@ -840,9 +840,9 @@ MacSystrayInit(Tcl_Interp *interp)
}
#endif
- Tcl_CreateObjCommand(interp, "_systray", MacSystrayObjCmd, info,
- (Tcl_CmdDeleteProc *)MacSystrayDestroy);
- Tcl_CreateObjCommand(interp, "_sysnotify", SysNotifyObjCmd, NULL, NULL);
+ Tcl_CreateObjCommand(interp, "::tk::systray::_systray", MacSystrayObjCmd, info,
+ (Tcl_CmdDeleteProc *)MacSystrayDestroy);
+ Tcl_CreateObjCommand(interp, "::tk::sysnotify::_sysnotify", SysNotifyObjCmd, NULL, NULL);
return TCL_OK;
}