diff options
author | okan | 2012-10-31 19:30:19 +0000 |
---|---|---|
committer | okan | 2012-10-31 19:30:19 +0000 |
commit | 09592e294300150a2c627a176bdbec0fedf4e1d9 (patch) | |
tree | 408b348edf99fa03e26c6aee3e1b08229d0c3da5 /calmwm.h | |
parent | 5854a666c86986a568f60c94ce1fa0fe10104405 (diff) | |
download | cwm-09592e294300150a2c627a176bdbec0fedf4e1d9.tar.gz |
replace 'reload' with 'restart', which merely re-exec's cwm using the
existing argv; same idea with respect to argv saving as Alexander
Polakov. reload support was half-complete and is getting in the way.
agreed to by many
Diffstat (limited to 'calmwm.h')
-rw-r--r-- | calmwm.h | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: calmwm.h,v 1.153 2012/09/09 19:47:47 okan Exp $ + * $OpenBSD: calmwm.h,v 1.154 2012/10/31 19:30:19 okan Exp $ */ #ifndef _CALMWM_H_ @@ -397,7 +397,7 @@ void kbfunc_lock(struct client_ctx *, union arg *); void kbfunc_menu_search(struct client_ctx *, union arg *); void kbfunc_moveresize(struct client_ctx *, union arg *); void kbfunc_quit_wm(struct client_ctx *, union arg *); -void kbfunc_reload(struct client_ctx *, union arg *); +void kbfunc_restart(struct client_ctx *, union arg *); void kbfunc_ssh(struct client_ctx *, union arg *); void kbfunc_term(struct client_ctx *, union arg *); @@ -431,7 +431,6 @@ void conf_grab(struct conf *, struct keybinding *); void conf_grab_mouse(struct client_ctx *); void conf_init(struct conf *); void conf_mousebind(struct conf *, char *, char *); -void conf_reload(struct conf *); void conf_setup(struct conf *, const char *); void conf_ungrab(struct conf *, struct keybinding *); @@ -449,7 +448,6 @@ void xev_loop(void); void xu_btn_grab(Window, int, u_int); void xu_btn_ungrab(Window, int, u_int); void xu_configure(struct client_ctx *); -void xu_freecolor(struct screen_ctx *, unsigned long); void xu_getatoms(void); unsigned long xu_getcolor(struct screen_ctx *, char *); int xu_getprop(Window, Atom, Atom, long, u_char **); |