summaryrefslogtreecommitdiff
path: root/wx+/focus.h
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-04-12 08:05:57 -0400
committerB Stack <bgstack15@gmail.com>2019-04-12 08:05:57 -0400
commit3a66f25c648c798d472f0de3b40c36a64fe75252 (patch)
tree603b0cb89ed5e4bb43725079c38c26a84c9f1425 /wx+/focus.h
parentMerge branch '10.10' into 'master' (diff)
downloadFreeFileSync-3a66f25c648c798d472f0de3b40c36a64fe75252.tar.gz
FreeFileSync-3a66f25c648c798d472f0de3b40c36a64fe75252.tar.bz2
FreeFileSync-3a66f25c648c798d472f0de3b40c36a64fe75252.zip
10.11
Diffstat (limited to 'wx+/focus.h')
-rw-r--r--wx+/focus.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/wx+/focus.h b/wx+/focus.h
index e2daef79..4ba5f3f5 100644
--- a/wx+/focus.h
+++ b/wx+/focus.h
@@ -54,7 +54,7 @@ struct FocusPreserver
{
//wxTopLevelWindow::IsActive() does NOT call Win32 ::GetActiveWindow()!
//Instead it checks if ::GetFocus() is set somewhere inside the top level
- //Note: Both Win32 active and focus windows are *thread-local* values, while foreground window is global! https://blogs.msdn.microsoft.com/oldnewthing/20131016-00/?p=2913
+ //Note: Both Win32 active and focus windows are *thread-local* values, while foreground window is global! https://devblogs.microsoft.com/oldnewthing/20131016-00/?p=2913
if (oldFocusId_ != wxID_ANY)
if (wxWindow* oldFocusWin = wxWindow::FindWindowById(oldFocusId_))
bgstack15