From 2139001c9f61a84ed1ac581a54bb2bde68928afd Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Tue, 18 Aug 2015 07:19:20 -0400 Subject: Coding style enforcement This was done by hand, so I might have missed things. If anyone knows of a good C style enforcement tool, let me know. --- include/focus.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'include/focus.h') diff --git a/include/focus.h b/include/focus.h index 185910f3..410ed134 100644 --- a/include/focus.h +++ b/include/focus.h @@ -10,12 +10,12 @@ enum movement_direction { MOVE_PARENT }; -//focused_container - the container found by following the `focused` pointer -//from a given container to a container with `is_focused` boolean set -//--- -//focused_view - the container found by following the `focused` pointer from a -//given container to a view. -//--- +// focused_container - the container found by following the `focused` pointer +// from a given container to a container with `is_focused` boolean set +// --- +// focused_view - the container found by following the `focused` pointer from a +// given container to a view. +// --- swayc_t *get_focused_container(swayc_t *parent); swayc_t *get_focused_view(swayc_t *parent); @@ -23,8 +23,8 @@ swayc_t *get_focused_view(swayc_t *parent); void set_focused_container(swayc_t *container); void set_focused_container_for(swayc_t *ancestor, swayc_t *container); -//lock focused container/view. locked by windows with OVERRIDE attribute -//and unlocked when they are destroyed +// lock focused container/view. locked by windows with OVERRIDE attribute +// and unlocked when they are destroyed extern bool locked_container_focus; extern bool locked_view_focus; -- cgit v1.2.3