summaryrefslogtreecommitdiff
path: root/src/devices/grolbp
diff options
context:
space:
mode:
authorwl <wl>2006-02-11 20:34:36 +0000
committerwl <wl>2006-02-11 20:34:36 +0000
commit4002ae89fa6320c0b96889d76aab727c836115c2 (patch)
tree774a8de73e1017e897d9fd67194599bc0563c672 /src/devices/grolbp
parent6a7f55cf47c291790cf08aaba36a947d7f6d5ab3 (diff)
downloadgroff-4002ae89fa6320c0b96889d76aab727c836115c2.tar.gz
* src/include/font.h: s/glyph_t/glyph/.
Update all callers. * src/devices/grotty/tty.cpp: s/glyph/tty_glyph/. s/output_character_t/output_character/.
Diffstat (limited to 'src/devices/grolbp')
-rw-r--r--src/devices/grolbp/lbp.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/grolbp/lbp.cpp b/src/devices/grolbp/lbp.cpp
index f1e63011..704f337e 100644
--- a/src/devices/grolbp/lbp.cpp
+++ b/src/devices/grolbp/lbp.cpp
@@ -63,7 +63,7 @@ class lbp_printer : public printer {
public:
lbp_printer(int, double, double);
~lbp_printer();
- void set_char(glyph_t, font *, const environment *, int, const char *name);
+ void set_char(glyph, font *, const environment *, int, const char *name);
void draw(int code, int *p, int np, const environment *env);
void begin_page(int);
void end_page(int page_length);
@@ -277,10 +277,10 @@ char *lbp_printer::font_name(const lbp_font *f, const int siz)
return bfont_name;
}
-void lbp_printer::set_char(glyph_t glyph, font *f, const environment *env,
+void lbp_printer::set_char(glyph g, font *f, const environment *env,
int w, const char *)
{
- int code = f->get_code(glyph);
+ int code = f->get_code(g);
unsigned char ch = code & 0xff;
unsigned short symbol_set = code >> 8;
if (f != cur_font) {