summaryrefslogtreecommitdiffstats
path: root/win/tkWinSysTray.c
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2020-11-17 21:47:09 (GMT)
committerfvogel <fvogelnew1@free.fr>2020-11-17 21:47:09 (GMT)
commit397a7b669085de29c7a47fcd27a9b512fa93c486 (patch)
tree1c097c417ffea43ba5581668fd8ef9b079c71f1f /win/tkWinSysTray.c
parentda7683c434e5508a4011377dccec6c9229cdd525 (diff)
downloadtk-397a7b669085de29c7a47fcd27a9b512fa93c486.zip
tk-397a7b669085de29c7a47fcd27a9b512fa93c486.tar.gz
tk-397a7b669085de29c7a47fcd27a9b512fa93c486.tar.bz2
More info in comments
Diffstat (limited to 'win/tkWinSysTray.c')
-rw-r--r--win/tkWinSysTray.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/win/tkWinSysTray.c b/win/tkWinSysTray.c
index 8f709ad..7874f61 100644
--- a/win/tkWinSysTray.c
+++ b/win/tkWinSysTray.c
@@ -674,7 +674,8 @@ TaskbarEval(
int result;
HWND hwnd = NULL;
- /* See http//:support.microsoft.com/kb/q135788 */
+ /* See http://support.microsoft.com/kb/q135788/
+ * Seems to have moved to https://www.betaarchive.com/wiki/index.php/Microsoft_KB_Archive/135788 */
if (fixup) {
if (icoPtr->hwndFocus != NULL && IsWindow(icoPtr->hwndFocus)) {
hwnd = icoPtr->hwndFocus;
@@ -688,7 +689,8 @@ TaskbarEval(
result = Tcl_GlobalEval(icoPtr->interp, expanded);
if (hwnd != NULL) {
- /* See http:/ /support.microsoft.com/kb/q135788/ */
+ /* See http://support.microsoft.com/kb/q135788/
+ * Seems to have moved to https://www.betaarchive.com/wiki/index.php/Microsoft_KB_Archive/135788 */
PostMessageW(hwnd, WM_NULL, 0, 0);
}
if (result != TCL_OK) {