| commit | ffa0b1313f171cbba182d32cbf4a815d3e939a2e | [log] [tgz] |
|---|---|---|
| author | Gerard Patel <g.patel@wanadoo.fr> | Sun Apr 04 12:37:48 1999 +0000 |
| committer | Alexandre Julliard <julliard@winehq.org> | Sun Apr 04 12:37:48 1999 +0000 |
| tree | ecb43348da5df3f575eb5f32edeaf7fe88003db2 | |
| parent | 9819f2b72ca5525823720a8fba52e91e9645cccf [diff] |
Added missing goto.
diff --git a/controls/combo.c b/controls/combo.c index f30f453..6b1b3f8 100644 --- a/controls/combo.c +++ b/controls/combo.c
@@ -1777,7 +1777,7 @@ retvalue = SendMessageA( lphc->hWndEdit, message, wParam, lParam ); else retvalue = SendMessageA( lphc->hWndLBox, message, wParam, lParam ); - + goto END; case WM_LBUTTONDOWN: if( !(lphc->wState & CBF_FOCUSED) ) SetFocus( lphc->self->hwndSelf ); if( lphc->wState & CBF_FOCUSED ) COMBO_LButtonDown( lphc, lParam );