WCheck, WRadio: send MSG_MOTIFY without parameter.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2016-12-10 19:07:14 +03:00
parent 4e74d7d255
commit e0c02c9c77
5 changed files with 9 additions and 9 deletions

View File

@ -75,7 +75,7 @@ check_callback (Widget * w, Widget * sender, widget_msg_t msg, int parm, void *d
return MSG_NOT_HANDLED;
c->state = !c->state;
widget_redraw (w);
send_message (w->owner, w, MSG_NOTIFY, (int) MSG_KEY, NULL);
send_message (w->owner, w, MSG_NOTIFY, 0, NULL);
return MSG_HANDLED;
case MSG_CURSOR:

View File

@ -84,7 +84,7 @@ radio_callback (Widget * w, Widget * sender, widget_msg_t msg, int parm, void *d
case ' ':
r->sel = r->pos;
widget_set_state (w, WST_FOCUSED, TRUE); /* Also draws the widget. */
send_message (w->owner, w, MSG_NOTIFY, (int) MSG_KEY, NULL);
send_message (w->owner, w, MSG_NOTIFY, 0, NULL);
return MSG_HANDLED;
case KEY_UP:

View File

@ -130,7 +130,7 @@ configure_callback (Widget * w, Widget * sender, widget_msg_t msg, int parm, voi
{
case MSG_NOTIFY:
/* message from "Single press" checkbutton */
if (sender != NULL && sender->id == configure_old_esc_mode_id && parm == (int) MSG_KEY)
if (sender != NULL && sender->id == configure_old_esc_mode_id)
{
const gboolean not_single = !CHECK (sender)->state;
Widget *ww;
@ -279,7 +279,7 @@ panel_listing_callback (Widget * w, Widget * sender, widget_msg_t msg, int parm,
switch (msg)
{
case MSG_NOTIFY:
if (sender != NULL && sender->id == panel_listing_types_id && parm == (int) MSG_KEY)
if (sender != NULL && sender->id == panel_listing_types_id)
{
WCheck *ch;
WInput *in1, *in2, *in3;
@ -299,7 +299,7 @@ panel_listing_callback (Widget * w, Widget * sender, widget_msg_t msg, int parm,
return MSG_HANDLED;
}
if (sender != NULL && sender->id == mini_user_status_id && parm == (int) MSG_KEY)
if (sender != NULL && sender->id == mini_user_status_id)
{
WInput *in;
@ -401,7 +401,7 @@ confvfs_callback (Widget * w, Widget * sender, widget_msg_t msg, int parm, void
{
case MSG_NOTIFY:
/* message from "Always use ftp proxy" checkbutton */
if (sender != NULL && sender->id == ftpfs_always_use_proxy_id && parm == (int) MSG_KEY)
if (sender != NULL && sender->id == ftpfs_always_use_proxy_id)
{
const gboolean not_use = !CHECK (sender)->state;
Widget *wi;

View File

@ -230,7 +230,7 @@ chmod_callback (Widget * w, Widget * sender, widget_msg_t msg, int parm, void *d
if (sender == WIDGET (check_perm[i].check))
break;
if (i < check_perm_num && parm == (int) MSG_KEY)
if (i < check_perm_num)
{
char buffer[BUF_TINY];

View File

@ -370,7 +370,7 @@ layout_callback (Widget * w, Widget * sender, widget_msg_t msg, int parm, void *
return MSG_HANDLED;
case MSG_NOTIFY:
if (sender == WIDGET (radio_widget) && parm == (int) MSG_KEY)
if (sender == WIDGET (radio_widget))
{
if (panels_layout.horizontal_split != radio_widget->sel)
{
@ -404,7 +404,7 @@ layout_callback (Widget * w, Widget * sender, widget_msg_t msg, int parm, void *
return MSG_HANDLED;
}
if (sender == WIDGET (check_options[0].widget) && parm == (int) MSG_KEY)
if (sender == WIDGET (check_options[0].widget))
{
int eq;