view: Rename/move workspaces_send_to() to view_move_to_workspace()

This function semantically belongs in view.c since it
modifies `struct view`.

Also a minor formatting fix in view_toggle_always_on_top().
This commit is contained in:
John Lindgren 2022-11-21 13:03:49 -05:00
parent 8d401f9cb5
commit 103faadd3e
5 changed files with 16 additions and 15 deletions

View file

@ -21,7 +21,6 @@ struct workspace {
void workspaces_init(struct server *server);
void workspaces_switch_to(struct workspace *target);
void workspaces_send_to(struct view *view, struct workspace *target);
void workspaces_destroy(struct server *server);
void workspaces_osd_hide(struct seat *seat);
struct workspace *workspaces_find(struct workspace *anchor, const char *name);