diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2017-10-05 16:34:56 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2017-10-05 16:34:56 -0700 |
commit | 29fa9c0870eebc152a92da2290e405be6e37fc56 (patch) | |
tree | 8ffcbbb352249a2fcc611b55317f4d622a4f9ef2 /src/key.c | |
parent | 1848f22c6d7dbedaafbb9a0892a7ce6f3eb1b280 (diff) |
*: s/vwm_win_focused/vwm_win_get_focused/
Diffstat (limited to 'src/key.c')
-rw-r--r-- | src/key.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -70,7 +70,7 @@ void vwm_key_released(vwm_t *vwm, Window win, XKeyReleasedEvent *keyrelease) } /* make the focused window the most recently used */ - if ((vwin = vwm_win_focused(vwm))) + if ((vwin = vwm_win_get_focused(vwm))) vwm_win_mru(vwm, vwin); /* make the focused desktop the most recently used */ @@ -112,7 +112,7 @@ void vwm_key_pressed(vwm_t *vwm, Window win, XKeyPressedEvent *keypress) repeat_cnt = 0; } - vwin = vwm_win_focused(vwm); + vwin = vwm_win_get_focused(vwm); switch (sym) { |