mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
- MAKELONG takes (loword, hiword), not (hiword,loword) as was used in wordpad.
svn path=/trunk/; revision=34085
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user