oledlg: Remove extraneous braces from switch statement.

This commit is contained in:
Andrew Talbot 2011-11-05 20:53:59 +00:00 committed by Alexandre Julliard
parent 3358b541ac
commit 47a68bbdbe

View file

@ -197,11 +197,9 @@ static LRESULT UIINSOBJDLG_OnWMCommand(HWND hwnd, WPARAM wParam, LPARAM lParam)
UIINSERTOBJECTDLG_AddControl(pdlgInfo);
case IDC_OBJTYPELIST:
{
if (wNotifyCode == LBN_SELCHANGE)
UIINSERTOBJECTDLG_SelChange(pdlgInfo);
break;
}
}
return 0;
}