mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
- MAKELONG takes (loword, hiword), not (hiword,loword) as was used in wordpad.
svn path=/trunk/; revision=34085
This commit is contained in:
parent
d7928010a4
commit
eed84f7eae
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue