aboutsummaryrefslogtreecommitdiff
path: root/src/keyboard.zig
diff options
context:
space:
mode:
authorIsaac Freund <ifreund@ifreund.xyz>2020-03-25 16:29:30 +0100
committerIsaac Freund <ifreund@ifreund.xyz>2020-03-25 16:29:30 +0100
commit6c12c23cdb133b4e036a9c4ea8fb03757aead323 (patch)
tree5bae9527299e97d4351d2105cf14a95d7c3ca72a /src/keyboard.zig
parentac0c0449dcb23542595b77e220e70f7661f76fce (diff)
downloadriver-6c12c23cdb133b4e036a9c4ea8fb03757aead323.tar.gz
river-6c12c23cdb133b4e036a9c4ea8fb03757aead323.tar.xz
Correct a few function names to camelCase
Diffstat (limited to 'src/keyboard.zig')
-rw-r--r--src/keyboard.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.zig b/src/keyboard.zig
index 092f71d..1130052 100644
--- a/src/keyboard.zig
+++ b/src/keyboard.zig
@@ -94,7 +94,7 @@ pub const Keyboard = struct {
// process it as a compositor keybinding.
var i: usize = 0;
while (i < nsyms) {
- handled = keyboard.seat.server.handle_keybinding(syms.?[i]);
+ handled = keyboard.seat.server.handleKeybinding(syms.?[i]);
if (handled) {
break;
}