aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/input
diff options
context:
space:
mode:
authorLibravatar Zandr Martin <zandrmartin@gmail.com>2016-09-02 14:11:48 -0500
committerLibravatar Zandr Martin <zandrmartin@gmail.com>2016-09-02 14:11:48 -0500
commit65ace5dec5c24695501056376e227fb9b1f84a3a (patch)
treee5bae8ecc19c438091478ad878a8297252c72a81 /sway/commands/input
parentMerge branch 'master' of git://github.com/SirCmpwn/sway into commands-refactor (diff)
downloadsway-65ace5dec5c24695501056376e227fb9b1f84a3a.tar.gz
sway-65ace5dec5c24695501056376e227fb9b1f84a3a.tar.zst
sway-65ace5dec5c24695501056376e227fb9b1f84a3a.zip
merge in latest commits
Diffstat (limited to 'sway/commands/input')
-rw-r--r--sway/commands/input/accel_profile.c4
-rw-r--r--sway/commands/input/click_method.c4
-rw-r--r--sway/commands/input/drag_lock.c4
-rw-r--r--sway/commands/input/dwt.c4
-rw-r--r--sway/commands/input/events.c4
-rw-r--r--sway/commands/input/middle_emulation.c4
-rw-r--r--sway/commands/input/natural_scroll.c4
-rw-r--r--sway/commands/input/pointer_accel.c4
-rw-r--r--sway/commands/input/scroll_method.c4
-rw-r--r--sway/commands/input/tap.c4
10 files changed, 20 insertions, 20 deletions
diff --git a/sway/commands/input/accel_profile.c b/sway/commands/input/accel_profile.c
index bfc3c76d..290129f5 100644
--- a/sway/commands/input/accel_profile.c
+++ b/sway/commands/input/accel_profile.c
@@ -1,6 +1,6 @@
1#include <string.h> 1#include <string.h>
2#include "commands.h" 2#include "sway/commands.h"
3#include "input.h" 3#include "sway/input.h"
4 4
5struct cmd_results *input_cmd_accel_profile(int argc, char **argv) { 5struct cmd_results *input_cmd_accel_profile(int argc, char **argv) {
6 struct cmd_results *error = NULL; 6 struct cmd_results *error = NULL;
diff --git a/sway/commands/input/click_method.c b/sway/commands/input/click_method.c
index 2001acf2..0a7b7d23 100644
--- a/sway/commands/input/click_method.c
+++ b/sway/commands/input/click_method.c
@@ -1,6 +1,6 @@
1#include <string.h> 1#include <string.h>
2#include "commands.h" 2#include "sway/commands.h"
3#include "input.h" 3#include "sway/input.h"
4#include "log.h" 4#include "log.h"
5 5
6struct cmd_results *input_cmd_click_method(int argc, char **argv) { 6struct cmd_results *input_cmd_click_method(int argc, char **argv) {
diff --git a/sway/commands/input/drag_lock.c b/sway/commands/input/drag_lock.c
index 7bb2e334..0d100dd0 100644
--- a/sway/commands/input/drag_lock.c
+++ b/sway/commands/input/drag_lock.c
@@ -1,6 +1,6 @@
1#include <string.h> 1#include <string.h>
2#include "commands.h" 2#include "sway/commands.h"
3#include "input.h" 3#include "sway/input.h"
4 4
5struct cmd_results *input_cmd_drag_lock(int argc, char **argv) { 5struct cmd_results *input_cmd_drag_lock(int argc, char **argv) {
6 struct cmd_results *error = NULL; 6 struct cmd_results *error = NULL;
diff --git a/sway/commands/input/dwt.c b/sway/commands/input/dwt.c
index 4010126d..82013730 100644
--- a/sway/commands/input/dwt.c
+++ b/sway/commands/input/dwt.c
@@ -1,6 +1,6 @@
1#include <string.h> 1#include <string.h>
2#include "commands.h" 2#include "sway/commands.h"
3#include "input.h" 3#include "sway/input.h"
4 4
5struct cmd_results *input_cmd_dwt(int argc, char **argv) { 5struct cmd_results *input_cmd_dwt(int argc, char **argv) {
6 struct cmd_results *error = NULL; 6 struct cmd_results *error = NULL;
diff --git a/sway/commands/input/events.c b/sway/commands/input/events.c
index 9bf9aa95..2f13e30a 100644
--- a/sway/commands/input/events.c
+++ b/sway/commands/input/events.c
@@ -1,6 +1,6 @@
1#include <string.h> 1#include <string.h>
2#include "commands.h" 2#include "sway/commands.h"
3#include "input.h" 3#include "sway/input.h"
4#include "log.h" 4#include "log.h"
5 5
6struct cmd_results *input_cmd_events(int argc, char **argv) { 6struct cmd_results *input_cmd_events(int argc, char **argv) {
diff --git a/sway/commands/input/middle_emulation.c b/sway/commands/input/middle_emulation.c
index e3087f3a..b2e55468 100644
--- a/sway/commands/input/middle_emulation.c
+++ b/sway/commands/input/middle_emulation.c
@@ -1,6 +1,6 @@
1#include <string.h> 1#include <string.h>
2#include "commands.h" 2#include "sway/commands.h"
3#include "input.h" 3#include "sway/input.h"
4 4
5struct cmd_results *input_cmd_middle_emulation(int argc, char **argv) { 5struct cmd_results *input_cmd_middle_emulation(int argc, char **argv) {
6 struct cmd_results *error = NULL; 6 struct cmd_results *error = NULL;
diff --git a/sway/commands/input/natural_scroll.c b/sway/commands/input/natural_scroll.c
index 393f26a0..ac8cec12 100644
--- a/sway/commands/input/natural_scroll.c
+++ b/sway/commands/input/natural_scroll.c
@@ -1,6 +1,6 @@
1#include <string.h> 1#include <string.h>
2#include "commands.h" 2#include "sway/commands.h"
3#include "input.h" 3#include "sway/input.h"
4 4
5struct cmd_results *input_cmd_natural_scroll(int argc, char **argv) { 5struct cmd_results *input_cmd_natural_scroll(int argc, char **argv) {
6 struct cmd_results *error = NULL; 6 struct cmd_results *error = NULL;
diff --git a/sway/commands/input/pointer_accel.c b/sway/commands/input/pointer_accel.c
index e22c51c1..94f595d1 100644
--- a/sway/commands/input/pointer_accel.c
+++ b/sway/commands/input/pointer_accel.c
@@ -1,7 +1,7 @@
1#include <stdlib.h> 1#include <stdlib.h>
2#include <string.h> 2#include <string.h>
3#include "commands.h" 3#include "sway/commands.h"
4#include "input.h" 4#include "sway/input.h"
5 5
6struct cmd_results *input_cmd_pointer_accel(int argc, char **argv) { 6struct cmd_results *input_cmd_pointer_accel(int argc, char **argv) {
7 struct cmd_results *error = NULL; 7 struct cmd_results *error = NULL;
diff --git a/sway/commands/input/scroll_method.c b/sway/commands/input/scroll_method.c
index 8e900a26..de032b64 100644
--- a/sway/commands/input/scroll_method.c
+++ b/sway/commands/input/scroll_method.c
@@ -1,6 +1,6 @@
1#include <string.h> 1#include <string.h>
2#include "commands.h" 2#include "sway/commands.h"
3#include "input.h" 3#include "sway/input.h"
4 4
5struct cmd_results *input_cmd_scroll_method(int argc, char **argv) { 5struct cmd_results *input_cmd_scroll_method(int argc, char **argv) {
6 struct cmd_results *error = NULL; 6 struct cmd_results *error = NULL;
diff --git a/sway/commands/input/tap.c b/sway/commands/input/tap.c
index 8180dcea..9b559447 100644
--- a/sway/commands/input/tap.c
+++ b/sway/commands/input/tap.c
@@ -1,6 +1,6 @@
1#include <string.h> 1#include <string.h>
2#include "commands.h" 2#include "sway/commands.h"
3#include "input.h" 3#include "sway/input.h"
4#include "log.h" 4#include "log.h"
5 5
6struct cmd_results *input_cmd_tap(int argc, char **argv) { 6struct cmd_results *input_cmd_tap(int argc, char **argv) {