diff options
author | Okan Demirmen <okan@cvs.openbsd.org> | 2013-05-11 21:46:28 +0000 |
---|---|---|
committer | Okan Demirmen <okan@cvs.openbsd.org> | 2013-05-11 21:46:28 +0000 |
commit | d2aafd2f16c30a8d7e1e7210c3d315c81be729d1 (patch) | |
tree | 4697cf16539d2b366b149c91a66a1d7014ebaed7 /app/cwm/calmwm.h | |
parent | 1b9360e28688f6746e95b80b50022c598513befd (diff) |
replace conf_{gap,color,font} with conf_screen since really we are
configuring the screen *after* parsing, just as we do a conf_client on
client manage.
Diffstat (limited to 'app/cwm/calmwm.h')
-rw-r--r-- | app/cwm/calmwm.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/app/cwm/calmwm.h b/app/cwm/calmwm.h index bc4687192..712dc4b7e 100644 --- a/app/cwm/calmwm.h +++ b/app/cwm/calmwm.h @@ -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.196 2013/05/10 16:32:47 okan Exp $ + * $OpenBSD: calmwm.h,v 1.197 2013/05/11 21:46:27 okan Exp $ */ #ifndef _CALMWM_H_ @@ -439,14 +439,12 @@ void conf_bindname(struct conf *, char *, char *); void conf_clear(struct conf *); void conf_client(struct client_ctx *); void conf_cmd_add(struct conf *, char *, char *); -void conf_color(struct conf *, struct screen_ctx *); -void conf_font(struct conf *, struct screen_ctx *); -void conf_gap(struct conf *, struct screen_ctx *); void conf_grab(struct conf *, struct keybinding *); void conf_grab_mouse(struct client_ctx *); void conf_init(struct conf *); void conf_ignore(struct conf *, char *); void conf_mousebind(struct conf *, char *, char *); +void conf_screen(struct screen_ctx *); void conf_ungrab(struct conf *, struct keybinding *); void font_draw(struct screen_ctx *, const char *, int, |