- MAKELONG takes (loword, hiword), not (hiword,loword) as was used in wordpad.

svn path=/trunk/; revision=34085
This commit is contained in:
Aleksey Bragin 2008-06-25 19:59:10 +00:00
parent d7928010a4
commit eed84f7eae

View file

@ -558,7 +558,7 @@ static void update_window(void)
GetWindowRect(hMainWnd, &rect);
(void) OnSize(hMainWnd, SIZE_RESTORED, MAKELONG(rect.bottom, rect.right));
(void) OnSize(hMainWnd, SIZE_RESTORED, MAKELONG(rect.right, rect.bottom));
}
static BOOL is_bar_visible(int bandId)