aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/force_focus_wrapping.c
diff options
context:
space:
mode:
authorLibravatar Connor E <38229097+c-edw@users.noreply.github.com>2019-04-15 01:16:35 +0100
committerLibravatar Brian Ashworth <bosrsf04@gmail.com>2019-04-14 20:44:12 -0400
commitb2cfcebef61087f819b55d2f815e62aa4a6f1a52 (patch)
tree1336d7d187cccd3f7d92b4bc4749973117c642ea /sway/commands/force_focus_wrapping.c
parentImplement input type configs (#3784) (diff)
downloadsway-b2cfcebef61087f819b55d2f815e62aa4a6f1a52.tar.gz
sway-b2cfcebef61087f819b55d2f815e62aa4a6f1a52.tar.zst
sway-b2cfcebef61087f819b55d2f815e62aa4a6f1a52.zip
Add deprecation warnings for new_float, new_window, and force_focus_wrapping.
Diffstat (limited to 'sway/commands/force_focus_wrapping.c')
-rw-r--r--sway/commands/force_focus_wrapping.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/sway/commands/force_focus_wrapping.c b/sway/commands/force_focus_wrapping.c
index e646ae9b..fafc1c3e 100644
--- a/sway/commands/force_focus_wrapping.c
+++ b/sway/commands/force_focus_wrapping.c
@@ -1,9 +1,16 @@
1#include <strings.h>
2#include "sway/commands.h" 1#include "sway/commands.h"
3#include "sway/config.h" 2#include "sway/config.h"
3#include "log.h"
4#include "util.h" 4#include "util.h"
5 5
6struct cmd_results *cmd_force_focus_wrapping(int argc, char **argv) { 6struct cmd_results *cmd_force_focus_wrapping(int argc, char **argv) {
7 sway_log(SWAY_INFO, "Warning: force_focus_wrapping is deprecated. "
8 "Use focus_wrapping instead.");
9 if (config->reading) {
10 config_add_swaynag_warning("force_focus_wrapping is deprecated. "
11 "Use focus_wrapping instead.");
12 }
13
7 struct cmd_results *error = 14 struct cmd_results *error =
8 checkarg(argc, "force_focus_wrapping", EXPECTED_EQUAL_TO, 1); 15 checkarg(argc, "force_focus_wrapping", EXPECTED_EQUAL_TO, 1);
9 if (error) { 16 if (error) {