Correct a few function names to camelCase

This commit is contained in:
Isaac Freund
2020-03-25 16:29:30 +01:00
parent ac0c0449dc
commit 6c12c23cdb
2 changed files with 6 additions and 6 deletions

View File

@ -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;
}