aboutsummaryrefslogtreecommitdiffstats
path: root/sway/server.c
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-07 07:31:49 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-07 07:35:10 -0500
commit21ce20885a6a6e9e7178778513b09fea9354c603 (patch)
treeb7d763380f5b4df177ae0b8e0ca455e163bdad19 /sway/server.c
parentinput skeleton (diff)
downloadsway-21ce20885a6a6e9e7178778513b09fea9354c603.tar.gz
sway-21ce20885a6a6e9e7178778513b09fea9354c603.tar.zst
sway-21ce20885a6a6e9e7178778513b09fea9354c603.zip
rename input to input-manager
Diffstat (limited to 'sway/server.c')
-rw-r--r--sway/server.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/server.c b/sway/server.c
index 3873e625..174beac6 100644
--- a/sway/server.c
+++ b/sway/server.c
@@ -11,7 +11,7 @@
11// TODO WLR: make Xwayland optional 11// TODO WLR: make Xwayland optional
12#include <wlr/xwayland.h> 12#include <wlr/xwayland.h>
13#include "sway/server.h" 13#include "sway/server.h"
14#include "sway/input.h" 14#include "sway/input-manager.h"
15#include "log.h" 15#include "log.h"
16 16
17bool server_init(struct sway_server *server) { 17bool server_init(struct sway_server *server) {
@@ -60,7 +60,7 @@ bool server_init(struct sway_server *server) {
60 return false; 60 return false;
61 } 61 }
62 62
63 server->input = sway_input_create(server); 63 server->input = sway_input_manager_create(server);
64 64
65 return true; 65 return true;
66} 66}