Commit cbbfbca9 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

user.exe16: Remove variable width which is not really used from listbox_proc16.

parent 6dd4b071
...@@ -2403,7 +2403,7 @@ static LRESULT listbox_proc16( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam ...@@ -2403,7 +2403,7 @@ static LRESULT listbox_proc16( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam
if (is_old_app( hwnd )) if (is_old_app( hwnd ))
{ {
DWORD style = GetWindowLongW( hwnd, GWL_STYLE ); DWORD style = GetWindowLongW( hwnd, GWL_STYLE );
int width, height, remaining, item_height; int height, remaining, item_height;
RECT rect; RECT rect;
/* give a margin for error to old 16 bits programs - if we need /* give a margin for error to old 16 bits programs - if we need
...@@ -2413,7 +2413,6 @@ static LRESULT listbox_proc16( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam ...@@ -2413,7 +2413,6 @@ static LRESULT listbox_proc16( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam
if (!(style & LBS_NOINTEGRALHEIGHT) && !(style & LBS_OWNERDRAWVARIABLE)) if (!(style & LBS_NOINTEGRALHEIGHT) && !(style & LBS_OWNERDRAWVARIABLE))
{ {
GetClientRect( hwnd, &rect ); GetClientRect( hwnd, &rect );
width = rect.right - rect.left;
height = rect.bottom - rect.top; height = rect.bottom - rect.top;
item_height = wow_handlers32.listbox_proc( hwnd, LB_GETITEMHEIGHT, 0, 0, FALSE ); item_height = wow_handlers32.listbox_proc( hwnd, LB_GETITEMHEIGHT, 0, 0, FALSE );
remaining = item_height ? (height % item_height) : 0; remaining = item_height ? (height % item_height) : 0;
......
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