1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-11-04 08:17:17 -05:00

hierbox_ev_[init|abort](): it makes more sense to return EVENT_PROCESSED.

This commit is contained in:
Laurent MONIN 2006-01-05 11:44:29 +01:00 committed by Laurent MONIN
parent a05b6c0636
commit f8310de64b

View File

@ -235,7 +235,7 @@ hierbox_ev_init(struct dialog_data *dlg_data)
litem->visible = 1;
}
return EVENT_NOT_PROCESSED; /* FIXME: is this correct ? --Zas */
return EVENT_PROCESSED;
}
static widget_handler_status_T
@ -259,7 +259,7 @@ hierbox_ev_abort(struct dialog_data *dlg_data)
}
}
return EVENT_NOT_PROCESSED; /* FIXME: is this correct ? --Zas */
return EVENT_PROCESSED;
}