mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
parent
bb5db143f0
commit
bfb19dd251
1 changed files with 9 additions and 9 deletions
|
@ -1622,17 +1622,17 @@ NewExtDlg_OnAdvanced(HWND hwndDlg, NEWEXT_DIALOG *pNewExt)
|
|||
HDWP hDWP = BeginDeferWindowPos(3);
|
||||
|
||||
if (hDWP)
|
||||
DeferWindowPos(hDWP, GetDlgItem(hwndDlg, IDOK), NULL,
|
||||
rc1.left, rc1.top, rc1.right - rc1.left, rc1.bottom - rc1.top,
|
||||
SWP_NOACTIVATE | SWP_NOZORDER);
|
||||
hDWP = DeferWindowPos(hDWP, GetDlgItem(hwndDlg, IDOK), NULL,
|
||||
rc1.left, rc1.top, rc1.right - rc1.left, rc1.bottom - rc1.top,
|
||||
SWP_NOACTIVATE | SWP_NOZORDER);
|
||||
if (hDWP)
|
||||
DeferWindowPos(hDWP, GetDlgItem(hwndDlg, IDCANCEL), NULL,
|
||||
rc2.left, rc2.top, rc2.right - rc2.left, rc2.bottom - rc2.top,
|
||||
SWP_NOACTIVATE | SWP_NOZORDER);
|
||||
hDWP = DeferWindowPos(hDWP, GetDlgItem(hwndDlg, IDCANCEL), NULL,
|
||||
rc2.left, rc2.top, rc2.right - rc2.left, rc2.bottom - rc2.top,
|
||||
SWP_NOACTIVATE | SWP_NOZORDER);
|
||||
if (hDWP)
|
||||
DeferWindowPos(hDWP, hwndDlg, NULL,
|
||||
rc.left, rc.top, rc.right - rc.left, rc.bottom - rc.top,
|
||||
SWP_NOACTIVATE | SWP_NOZORDER);
|
||||
hDWP = DeferWindowPos(hDWP, hwndDlg, NULL,
|
||||
rc.left, rc.top, rc.right - rc.left, rc.bottom - rc.top,
|
||||
SWP_NOACTIVATE | SWP_NOZORDER);
|
||||
|
||||
if (hDWP)
|
||||
EndDeferWindowPos(hDWP);
|
||||
|
|
Loading…
Reference in a new issue