From 37ca5c28c1dcc0b6e4cac6648aa85a533b6970e2 Mon Sep 17 00:00:00 2001 From: Consolatis <35009135+Consolatis@users.noreply.github.com> Date: Wed, 15 Jun 2022 01:22:44 +0200 Subject: [PATCH] include/labwc.h desktop_cycle_view: Clarify signature --- include/labwc.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/labwc.h b/include/labwc.h index 5cfb91b3..9e083a7e 100644 --- a/include/labwc.h +++ b/include/labwc.h @@ -454,10 +454,10 @@ enum lab_cycle_dir { /** * desktop_cycle_view - return view to 'cycle' to - * @current: reference point for finding next view to cycle to - * Note: If !current, the server->views second focusable view is returned + * @start_view: reference point for finding next view to cycle to + * Note: If !start_view, the second focusable view is returned */ -struct view *desktop_cycle_view(struct server *server, struct view *current, +struct view *desktop_cycle_view(struct server *server, struct view *start_view, enum lab_cycle_dir dir); struct view *desktop_focused_view(struct server *server); void desktop_focus_topmost_mapped_view(struct server *server);