Commit 4598c480 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

comctl32: Remove unneeded shadow variables for comboex.

parent d66dacce
...@@ -1381,8 +1381,6 @@ static LRESULT COMBOEX_DrawItem (const COMBOEX_INFO *infoPtr, DRAWITEMSTRUCT con ...@@ -1381,8 +1381,6 @@ static LRESULT COMBOEX_DrawItem (const COMBOEX_INFO *infoPtr, DRAWITEMSTRUCT con
item = infoPtr->edit; item = infoPtr->edit;
if (infoPtr->hwndEdit) { if (infoPtr->hwndEdit) {
INT len;
/* free previous text of edit item */ /* free previous text of edit item */
COMBOEX_FreeText(item); COMBOEX_FreeText(item);
item->mask &= ~CBEIF_TEXT; item->mask &= ~CBEIF_TEXT;
...@@ -2076,7 +2074,6 @@ COMBOEX_ComboWndProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam, ...@@ -2076,7 +2074,6 @@ COMBOEX_ComboWndProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam,
* For EN_CHANGE this issues the same calls and messages * For EN_CHANGE this issues the same calls and messages
* as the native seems to do. * as the native seems to do.
*/ */
WCHAR edit_text[260];
LPCWSTR lastwrk; LPCWSTR lastwrk;
cmp_func_t cmptext = get_cmp_func(infoPtr); cmp_func_t cmptext = get_cmp_func(infoPtr);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment