diff options
author | portix <portix@gmx.net> | 2012-01-06 00:09:25 +0100 |
---|---|---|
committer | portix <portix@gmx.net> | 2012-01-06 00:09:25 +0100 |
commit | d81f9d3227ce491a6623e675df9475d43c33d4f0 (patch) | |
tree | 3f441447db7ac8af58ffc7050929d7fa6cc37505 /src/commands.h | |
parent | 661c1aac6371e027f55da5378ddad33b1984c755 (diff) | |
download | dwb-d81f9d3227ce491a6623e675df9475d43c33d4f0.zip |
Return DwbStatus in all functions in commands.c
Diffstat (limited to 'src/commands.h')
-rw-r--r-- | src/commands.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/commands.h b/src/commands.h index 9312ba05..e0bdea38 100644 --- a/src/commands.h +++ b/src/commands.h @@ -21,7 +21,7 @@ void commands_simple_command(KeyMap *km); -void commands_add_view(KeyMap *, Arg *); +DwbStatus commands_add_view(KeyMap *, Arg *); DwbStatus commands_add_search_field(KeyMap *, Arg *); DwbStatus commands_allow_cookie(KeyMap *, Arg *); DwbStatus commands_bookmark(KeyMap *, Arg *); @@ -69,9 +69,8 @@ DwbStatus commands_yank(KeyMap *, Arg *); DwbStatus commands_zoom_in(KeyMap *, Arg *); DwbStatus commands_zoom_out(KeyMap *, Arg *); DwbStatus dwb_create_hints(Arg *); -void commands_remove_view(KeyMap *, Arg *); -void commands_set_zoom_level(KeyMap *, Arg *); -void commands_toggle_maximized(KeyMap *, Arg *); +DwbStatus commands_remove_view(KeyMap *, Arg *); +DwbStatus commands_set_zoom_level(KeyMap *, Arg *); DwbStatus commands_toggle_hidden_files(KeyMap *, Arg *); DwbStatus commands_web_inspector(KeyMap *, Arg *); DwbStatus commands_quit(KeyMap *, Arg *); |