From 4891f543e4ba818d0180ee6811859fe439e8f315 Mon Sep 17 00:00:00 2001 From: Derek Foreman Date: Thu, 29 May 2003 16:35:08 +0000 Subject: [PATCH] remove comments from glft callers --- render2/font.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/render2/font.c b/render2/font.c index f7cddcc2..10dfc616 100644 --- a/render2/font.c +++ b/render2/font.c @@ -1,4 +1,5 @@ #include "render.h" +#include "instance.h" #include "font.h" #include @@ -8,14 +9,14 @@ struct RrFont *RrFontOpen(struct RrInstance *inst, const char *fontstring) font = malloc(sizeof(struct RrFont)); font->inst = inst; -/*XXX font->font = GlftFontOpen(fontstring);*/ + font->font = GlftFontOpen(RrDisplay(inst), RrScreen(inst), fontstring); return font; } void RrFontClose(struct RrFont *font) { if (font) { -/*XXX GlftFontClose(font->font);*/ + GlftFontClose(font->font); free(font); } } -- 2.34.1