aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Ronan Pigott <ronan@rjp.ie>2022-11-16 15:50:34 -0700
committerLibravatar Simon Ser <contact@emersion.fr>2022-11-26 10:29:59 +0100
commit9d78ede905717022081657da1bef7378f034126b (patch)
tree54569ae928f88f9f91e225de66c890fa4db88152 /include
parentlauncher: use xdga tokens (diff)
downloadsway-9d78ede905717022081657da1bef7378f034126b.tar.gz
sway-9d78ede905717022081657da1bef7378f034126b.tar.zst
sway-9d78ede905717022081657da1bef7378f034126b.zip
launcher: rename pid_workspace to launcher_ctx
Soon we will match views with more than just a pid. (cherry picked from commit d75c9f9722389d441fd24bd490c5cf12c4bef39a)
Diffstat (limited to 'include')
-rw-r--r--include/sway/desktop/launcher.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sway/desktop/launcher.h b/include/sway/desktop/launcher.h
index bbc4a2c3..7802bee1 100644
--- a/include/sway/desktop/launcher.h
+++ b/include/sway/desktop/launcher.h
@@ -3,10 +3,10 @@
3 3
4#include <stdlib.h> 4#include <stdlib.h>
5 5
6struct sway_workspace *root_workspace_for_pid(pid_t pid); 6struct sway_workspace *workspace_for_pid(pid_t pid);
7 7
8void root_record_workspace_pid(pid_t pid); 8void launcher_ctx_create(pid_t pid);
9 9
10void root_remove_workspace_pid(pid_t pid); 10void remove_workspace_pid(pid_t pid);
11 11
12#endif 12#endif