summaryrefslogtreecommitdiffstats
path: root/library/systray.tcl
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2020-11-15 20:25:01 (GMT)
committerfvogel <fvogelnew1@free.fr>2020-11-15 20:25:01 (GMT)
commit712b44663c8f3b814b067ea854f16fe3ad18b793 (patch)
tree052bf5d5f334afea97de67de8cc3ccff175a3e81 /library/systray.tcl
parentc73c4d6eb0e6965654429e0c1a005836fed387c1 (diff)
downloadtk-712b44663c8f3b814b067ea854f16fe3ad18b793.zip
tk-712b44663c8f3b814b067ea854f16fe3ad18b793.tar.gz
tk-712b44663c8f3b814b067ea854f16fe3ad18b793.tar.bz2
Fix failure of systray-15 created by the previous commit.
Diffstat (limited to 'library/systray.tcl')
-rw-r--r--library/systray.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/systray.tcl b/library/systray.tcl
index ebc1fc4..6948ba0 100644
--- a/library/systray.tcl
+++ b/library/systray.tcl
@@ -294,7 +294,7 @@ proc ::tk::systray::_check_options {argsList singleOk} {
# title - main text of alert.
# message - body text of alert.
-proc ::tk::sysnotify {title message} {
+proc ::tk::sysnotify::sysnotify {title message} {
switch -- [tk windowingsystem] {
"win32" {
@@ -321,5 +321,5 @@ proc ::tk::sysnotify {title message} {
#Thanks to Christian Gollwitzer for the guidance here
set map [namespace ensemble configure tk -map]
dict set map systray ::tk::systray
-dict set map sysnotify ::tk::sysnotify
+dict set map sysnotify ::tk::sysnotify::sysnotify
namespace ensemble configure tk -map $map