1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-05 01:28:39 +00:00

Fix call to Color constructor.

This commit is contained in:
Duan Yao 2014-06-27 17:18:29 +08:00
parent 85f04be632
commit 25d53ba0d1

View File

@ -93,7 +93,7 @@ void HTMLTextLine::dump_char(std::ostream & out, int pos)
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)
{