From: Orestis Floros Date: Sat, 24 Mar 2018 12:26:11 +0000 (+0200) Subject: _workspace_show -> workspace_show X-Git-Tag: 4.16~119^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=4097769105bf876de9dfa1919e0a97e7b3e62c58;p=i3%2Fi3 _workspace_show -> workspace_show a9b57a44a9d328d5153158445bc6a5c7b78420b0 removed the extra parameter of workspace_show. --- diff --git a/src/workspace.c b/src/workspace.c index 8c46a949..2d574e2a 100644 --- a/src/workspace.c +++ b/src/workspace.c @@ -340,7 +340,7 @@ static void workspace_reassign_sticky(Con *con) { /* * Callback to reset the urgent flag of the given con to false. May be started by - * _workspace_show to avoid urgency hints being lost by switching to a workspace + * workspace_show to avoid urgency hints being lost by switching to a workspace * focusing the con. * */ @@ -360,7 +360,11 @@ static void workspace_defer_update_urgent_hint_cb(EV_P_ ev_timer *w, int revents } } -static void _workspace_show(Con *workspace) { +/* + * Switches to the given workspace + * + */ +void workspace_show(Con *workspace) { Con *current, *old = NULL; Con *old_focus = focused; @@ -487,14 +491,6 @@ static void _workspace_show(Con *workspace) { output_push_sticky_windows(old_focus); } -/* - * Switches to the given workspace - * - */ -void workspace_show(Con *workspace) { - _workspace_show(workspace); -} - /* * Looks up the workspace by name and switches to it. * @@ -502,7 +498,7 @@ void workspace_show(Con *workspace) { void workspace_show_by_name(const char *num) { Con *workspace; workspace = workspace_get(num, NULL); - _workspace_show(workspace); + workspace_show(workspace); } /*