diff options
| author | codesoap <codesoap@mailbox.org> | 2019-06-25 17:48:24 +0200 |
|---|---|---|
| committer | codesoap <codesoap@mailbox.org> | 2019-06-25 19:16:47 +0200 |
| commit | ca2741fe207b94dab5ca9e5d55df7bdf98ee457d (patch) | |
| tree | 0eed864a5ae97cc83e6648c2f10681fff07f7587 /src/hook_manager.hh | |
| parent | 196b38b2e0b8c8babfeffec786ef9ad948e976e6 (diff) | |
Rename ModuleLoad hook to ModuleLoaded
This clarifies, that the hook is run *after* the module is loaded.
Diffstat (limited to 'src/hook_manager.hh')
| -rw-r--r-- | src/hook_manager.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hook_manager.hh b/src/hook_manager.hh index f1e6667b..71e9e2d1 100644 --- a/src/hook_manager.hh +++ b/src/hook_manager.hh @@ -57,7 +57,7 @@ enum class Hook WinDisplay, WinResize, WinSetOption, - ModuleLoad + ModuleLoaded }; constexpr auto enum_desc(Meta::Type<Hook>) @@ -103,7 +103,7 @@ constexpr auto enum_desc(Meta::Type<Hook>) {Hook::WinDisplay, "WinDisplay"}, {Hook::WinResize, "WinResize"}, {Hook::WinSetOption, "WinSetOption"}, - {Hook::ModuleLoad, "ModuleLoad"} + {Hook::ModuleLoaded, "ModuleLoaded"} }); } |
