From fc1044aab99f42f4c460b70b8864a06cdb92f28d Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sun, 3 May 2015 16:56:58 -0400 Subject: [PATCH] Quick TODOTODOTODO... resolution. --- windows/tab.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/tab.c b/windows/tab.c index 742fef26..f89d6462 100644 --- a/windows/tab.c +++ b/windows/tab.c @@ -110,7 +110,7 @@ static LRESULT CALLBACK tabSubProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM l case msgUpdateChild: if (GetWindowRect(t->hwnd, &r) == 0) logLastError("error getting Tab window rect for synthesized resize message in tabSubProc()"); - // these are in screen coordinates, which match what WM_WINDOWPOSCHANGED gave us (thanks TODOTODOTODOTODOTODOTODOTODO) + // these are in screen coordinates, which match what WM_WINDOWPOSCHANGED gave us (see http://stackoverflow.com/questions/29598334/are-the-coordinates-in-windowpos-on-wm-windowposchanged-in-parent-coordinates-or) resizeTab(t, r.right - r.left, r.bottom - r.top); return 0; case WM_NCDESTROY: