diff options
author | okan | 2012-11-28 14:14:44 +0000 |
---|---|---|
committer | okan | 2012-11-28 14:14:44 +0000 |
commit | d16264bf90da79427118a7a1cea97aea40e3214e (patch) | |
tree | 5833630167ed00d20838f6de68a60cc33d3402a7 /calmwm.h | |
parent | 94322ab4b003d971f561881fc600cffaa102a345 (diff) | |
download | cwm-d16264bf90da79427118a7a1cea97aea40e3214e.tar.gz |
replace hand rolled font_make() with XftFontOpenName() and merge into
font_init().
Diffstat (limited to 'calmwm.h')
-rw-r--r-- | calmwm.h | 6 |
1 files changed, 3 insertions, 3 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.159 2012/11/08 20:18:19 okan Exp $ + * $OpenBSD: calmwm.h,v 1.160 2012/11/28 14:14:44 okan Exp $ */ #ifndef _CALMWM_H_ @@ -446,9 +446,9 @@ int font_descent(struct screen_ctx *); void font_draw(struct screen_ctx *, const char *, int, Drawable, int, int); u_int font_height(struct screen_ctx *); -void font_init(struct screen_ctx *, const char *); +void font_init(struct screen_ctx *, const char *, + const char *); int font_width(struct screen_ctx *, const char *, int); -XftFont *font_make(struct screen_ctx *, const char *); void xev_loop(void); |