diff options
| author | Pietro Gagliardi <[email protected]> | 2014-08-08 22:28:58 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-08-08 22:28:58 -0400 |
| commit | 0cf86eeb03a53bd7f81c7de977cea1a2b1c3459c (patch) | |
| tree | b227dd9fc844781c711eaee2264c2a08ea86be53 /redo/tab_windows.c | |
| parent | 8ee7b2b8097ee7d67bb38d0180e81f53c6d05326 (diff) | |
Added nested and empty tabs to the test program, and fixed up relevant documentation.
Diffstat (limited to 'redo/tab_windows.c')
| -rw-r--r-- | redo/tab_windows.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/redo/tab_windows.c b/redo/tab_windows.c index 5a998b5..6d5c708 100644 --- a/redo/tab_windows.c +++ b/redo/tab_windows.c @@ -70,7 +70,7 @@ LONG tabGetTabHeight(HWND hwnd) LONG tallest; n = SendMessageW(hwnd, TCM_GETITEMCOUNT, 0, 0); - /* if there are no tabs, then the control just draws a box over the full window rect, reserving no space for tabs (TODO check on windows xp and 7); this is handled here */ + /* if there are no tabs, then the control just draws a box over the full window rect, reserving no space for tabs; this is handled with the next line */ tallest = 0; for (i = 0; i < n; i++) { if (SendMessageW(hwnd, TCM_GETITEMRECT, (WPARAM) i, (LPARAM) (&r)) == FALSE) |
