X-Git-Url: https://git.sur5r.net/?p=i3%2Fi3;a=blobdiff_plain;f=include%2Fkey_press.h;h=8f23854b0b34d6d9787c355bb8965befe625fbca;hp=417843a10fbea0c1a5e7c202539d7811e53f36e3;hb=HEAD;hpb=2252b4f5b956551ad4844deabee0ab38ccc73c99 diff --git a/include/key_press.h b/include/key_press.h index 417843a1..8f23854b 100644 --- a/include/key_press.h +++ b/include/key_press.h @@ -2,13 +2,14 @@ * vim:ts=4:sw=4:expandtab * * i3 - an improved dynamic tiling window manager - * © 2009-2012 Michael Stapelberg and contributors (see also: LICENSE) + * © 2009 Michael Stapelberg and contributors (see also: LICENSE) * * key_press.c: key press handler * */ -#ifndef I3_KEY_PRESS_H -#define I3_KEY_PRESS_H +#pragma once + +#include /** * There was a key press. We compare this key code with our bindings table and pass @@ -20,7 +21,7 @@ void handle_key_press(xcb_key_press_event_t *event); /** * Kills the commanderror i3-nagbar process, if any. * - * Called when reloading/restarting, since the user probably fixed his wrong + * Called when reloading/restarting, since the user probably fixed their wrong * keybindings. * * If wait_for_it is set (restarting), this function will waitpid(), otherwise, @@ -28,5 +29,3 @@ void handle_key_press(xcb_key_press_event_t *event); * */ void kill_commanderror_nagbar(bool wait_for_it); - -#endif