aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/seat.c
diff options
context:
space:
mode:
authorLibravatar Dominique Martinet <asmadeus@codewreck.org>2018-01-05 22:32:51 +0100
committerLibravatar Dominique Martinet <asmadeus@codewreck.org>2018-01-05 23:39:46 +0100
commit67985e903188a464e602d04f9ed218bd397f5ab1 (patch)
tree3589175749c9a2ed746b0cc280ab3ccfb33125e9 /sway/input/seat.c
parentMerge pull request #1554 from martinetd/cmd_set (diff)
downloadsway-67985e903188a464e602d04f9ed218bd397f5ab1.tar.gz
sway-67985e903188a464e602d04f9ed218bd397f5ab1.tar.zst
sway-67985e903188a464e602d04f9ed218bd397f5ab1.zip
sway: change all sway_log to wlr_log
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r--sway/input/seat.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 9a6a667b..268486ab 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -112,7 +112,7 @@ void sway_seat_configure_device(struct sway_seat *seat,
112 case WLR_INPUT_DEVICE_TOUCH: 112 case WLR_INPUT_DEVICE_TOUCH:
113 case WLR_INPUT_DEVICE_TABLET_PAD: 113 case WLR_INPUT_DEVICE_TABLET_PAD:
114 case WLR_INPUT_DEVICE_TABLET_TOOL: 114 case WLR_INPUT_DEVICE_TABLET_TOOL:
115 sway_log(L_DEBUG, "TODO: configure other devices"); 115 wlr_log(L_DEBUG, "TODO: configure other devices");
116 break; 116 break;
117 } 117 }
118} 118}
@@ -127,11 +127,11 @@ void sway_seat_add_device(struct sway_seat *seat,
127 struct sway_seat_device *seat_device = 127 struct sway_seat_device *seat_device =
128 calloc(1, sizeof(struct sway_seat_device)); 128 calloc(1, sizeof(struct sway_seat_device));
129 if (!seat_device) { 129 if (!seat_device) {
130 sway_log(L_DEBUG, "could not allocate seat device"); 130 wlr_log(L_DEBUG, "could not allocate seat device");
131 return; 131 return;
132 } 132 }
133 133
134 sway_log(L_DEBUG, "adding device %s to seat %s", 134 wlr_log(L_DEBUG, "adding device %s to seat %s",
135 input_device->identifier, seat->wlr_seat->name); 135 input_device->identifier, seat->wlr_seat->name);
136 136
137 seat_device->sway_seat = seat; 137 seat_device->sway_seat = seat;
@@ -150,7 +150,7 @@ void sway_seat_remove_device(struct sway_seat *seat,
150 return; 150 return;
151 } 151 }
152 152
153 sway_log(L_DEBUG, "removing device %s from seat %s", 153 wlr_log(L_DEBUG, "removing device %s from seat %s",
154 input_device->identifier, seat->wlr_seat->name); 154 input_device->identifier, seat->wlr_seat->name);
155 155
156 seat_device_destroy(seat_device); 156 seat_device_destroy(seat_device);