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