oledlg: Remove extraneous braces from switch statement

Andrew Talbot andrew.talbot at talbotville.com
Sat Nov 5 15:53:59 CDT 2011


Changelog:
    oledlg: Remove extraneous braces from switch statement.

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;
 }



More information about the wine-patches mailing list