diff options
author | nicm <nicm> | 2017-04-21 14:09:44 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-04-21 14:09:44 +0000 |
commit | c799425069d02675474cda312fac1457829052fb (patch) | |
tree | 072ca7fbea547071b5f4a14de7edc166bf0ac51c /alerts.c | |
parent | 428be9803cab5121bc8ccad5ecbcce509c57b3a1 (diff) | |
download | rtmux-c799425069d02675474cda312fac1457829052fb.tar.gz rtmux-c799425069d02675474cda312fac1457829052fb.tar.bz2 rtmux-c799425069d02675474cda312fac1457829052fb.zip |
More unnecessary arguments now winlink points back to session.
Diffstat (limited to 'alerts.c')
-rw-r--r-- | alerts.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -178,7 +178,7 @@ alerts_check_bell(struct window *w) s = wl->session; if (s->curw != wl) { wl->flags |= WINLINK_BELL; - notify_winlink("alert-bell", s, wl); + notify_winlink("alert-bell", wl); } if (s->flags & SESSION_ALERTED) @@ -239,7 +239,7 @@ alerts_check_activity(struct window *w) continue; wl->flags |= WINLINK_ACTIVITY; - notify_winlink("alert-activity", s, wl); + notify_winlink("alert-activity", wl); if (s->flags & SESSION_ALERTED) continue; @@ -275,7 +275,7 @@ alerts_check_silence(struct window *w) if (s->curw == wl) continue; wl->flags |= WINLINK_SILENCE; - notify_winlink("alert-silence", s, wl); + notify_winlink("alert-silence", wl); if (s->flags & SESSION_ALERTED) continue; |