1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-05 01:28:39 +00:00
This commit is contained in:
Lu Wang 2013-03-25 22:53:39 +08:00
parent ffd4072aa8
commit 7857527e9e

View File

@ -59,7 +59,6 @@ void HTMLRenderer::updateCharSpace(GfxState * state)
{ {
letter_space_changed = true; letter_space_changed = true;
} }
void HTMLRenderer::updateWordSpace(GfxState * state) void HTMLRenderer::updateWordSpace(GfxState * state)
{ {
word_space_changed = true; word_space_changed = true;
@ -351,8 +350,8 @@ void HTMLRenderer::check_state_change(GfxState * state)
// fill color // fill color
if((!(param->fallback)) && (all_changed || fill_color_changed)) if((!(param->fallback)) && (all_changed || fill_color_changed))
{ {
// * PDF Spec. Table 106 Text rendering modes // * PDF Spec. Table 106 Text rendering modes
static const char FILL[8] = { true, false, true, false, true, false, true, false }; static const char FILL[8] = { true, false, true, false, true, false, true, false };
int idx = state->getRender(); int idx = state->getRender();
assert((idx >= 0) && (idx < 8)); assert((idx >= 0) && (idx < 8));