Andrew Talbot : oledlg: Remove extraneous braces from switch statement.
Module: wine Branch: master Commit: 47a68bbdbe983ac045029d4fece00eec782b4dcb URL: http://source.winehq.org/git/wine.git/?a=commit;h=47a68bbdbe983ac045029d4fec... Author: Andrew Talbot <andrew.talbot(a)talbotville.com> Date: Sat Nov 5 20:53:59 2011 +0000 oledlg: Remove extraneous braces from switch statement. --- dlls/oledlg/insobjdlg.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/dlls/oledlg/insobjdlg.c b/dlls/oledlg/insobjdlg.c index 01d242e..c801fba 100644 --- a/dlls/oledlg/insobjdlg.c +++ b/dlls/oledlg/insobjdlg.c @@ -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; }
participants (1)
-
Alexandre Julliard