diff options
author | emersion <contact@emersion.fr> | 2018-10-30 15:17:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-30 15:17:55 +0100 |
commit | d3a62633113d487b5a5b1b484736dbe7cbe26bd0 (patch) | |
tree | 66f53dddfcd94217beedf25272fe427a34ab665f /include/util.h | |
parent | b90af3357030264a1a0def38f3feecb9056f3740 (diff) | |
parent | 7be309710dcd679e0b570bc2f076ac00ae9ad65d (diff) |
Merge pull request #3033 from RyanDwyer/remove-movement-direction
Remove enum movement_direction
Diffstat (limited to 'include/util.h')
-rw-r--r-- | include/util.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/util.h b/include/util.h index 19d2e7cf..c39c92b1 100644 --- a/include/util.h +++ b/include/util.h @@ -7,15 +7,6 @@ #include <wlr/types/wlr_output_layout.h> #include <xkbcommon/xkbcommon.h> -enum movement_direction { - MOVE_LEFT, - MOVE_RIGHT, - MOVE_UP, - MOVE_DOWN, - MOVE_PARENT, - MOVE_CHILD, -}; - /** * Wrap i into the range [0, max[ */ @@ -77,6 +68,4 @@ bool parse_boolean(const char *boolean, bool current); */ char* resolve_path(const char* path); -bool sway_dir_to_wlr(enum movement_direction dir, enum wlr_direction *out); - #endif |