diff options
author | jcid <devnull@localhost> | 2008-06-27 20:21:53 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-06-27 20:21:53 +0200 |
commit | 8d56726d8e2d461cee1af1e1d90b4c2bb36fd987 (patch) | |
tree | 3d5a6b33504ba4d9e091ff26aa310a50de6b0f32 /src | |
parent | 7add00a49f2514e029c5537bc4c27e26185927c2 (diff) |
- enabled prefs.vw_fontname + minor cleanup.
Diffstat (limited to 'src')
-rw-r--r-- | src/decode.c | 4 | ||||
-rw-r--r-- | src/web.cc | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/decode.c b/src/decode.c index af1d578d..a94156d0 100644 --- a/src/decode.c +++ b/src/decode.c @@ -194,7 +194,7 @@ Decode *a_Decode_transfer_init(const char *format) dc->decode = Decode_chunked; dc->free = Decode_chunked_free; dc->buffer = NULL; /* not used */ - MSG("chunked!\n"); + _MSG("chunked!\n"); } return dc; } @@ -210,7 +210,7 @@ Decode *a_Decode_content_init(const char *format) Decode *dc = NULL; if (format && !dStrcasecmp(format, "gzip")) { - MSG("gzipped data!\n"); + _MSG("gzipped data!\n"); z_stream *zs; dc = dNew(Decode, 1); @@ -75,7 +75,7 @@ int a_Web_dispatch_by_type (const char *Type, DilloWeb *Web, return -1; /* Set a style for the widget */ - fontAttrs.name = "Bitstream Charter"; + fontAttrs.name = prefs.vw_fontname; fontAttrs.size = (int) rint(12.0 * prefs.font_factor); fontAttrs.weight = 400; fontAttrs.style = style::FONT_STYLE_NORMAL; |