Fix gadget.cpp -Wunused-but-set-variable

Commit 917f079 removed all reads of `wind`, but did not remove its
assignment or declaration.  This breaks the build with gcc due to
-Wunused-but-set-variable.

Fixes: 917f079f02 ("Check for window_event_result::deleted in ui_dialog_do_gadgets")
This commit is contained in:
Kp 2016-11-19 17:24:51 +00:00
parent b43dcc1a52
commit 98afafb80f

View file

@ -225,7 +225,6 @@ window_event_result ui_dialog_do_gadgets(UI_DIALOG * dlg,const d_event &event)
{
int keypress = 0;
UI_GADGET * tmp, * tmp1;
window *wind;
if (event.type == EVENT_KEY_COMMAND)
keypress = event_key_get(event);
@ -310,7 +309,6 @@ window_event_result ui_dialog_do_gadgets(UI_DIALOG * dlg,const d_event &event)
}
tmp = dlg->gadget;
wind = ui_dialog_get_window(dlg);
do
{
// If it is under another dialog, that dialog's handler would have returned 1 for mouse events.