mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 13:00:08 +00:00
Fix call to Color constructor.
This commit is contained in:
parent
85f04be632
commit
25d53ba0d1
@ -93,7 +93,7 @@ void HTMLTextLine::dump_char(std::ostream & out, int pos)
|
|||||||
|
|
||||||
void HTMLTextLine::dump_chars(ostream & out, int begin, int len)
|
void HTMLTextLine::dump_chars(ostream & out, int begin, int len)
|
||||||
{
|
{
|
||||||
static const Color transparent { true, {0, 0, 0} };
|
static const Color transparent(0, 0, 0, true);
|
||||||
|
|
||||||
if (line_state.first_char_index < 0)
|
if (line_state.first_char_index < 0)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user