From 25d53ba0d1378b374bfbaab61c0acd8f7b15c27a Mon Sep 17 00:00:00 2001 From: Duan Yao Date: Fri, 27 Jun 2014 17:18:29 +0800 Subject: [PATCH] Fix call to Color constructor. --- src/HTMLTextLine.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HTMLTextLine.cc b/src/HTMLTextLine.cc index c1a624a..7cb29f5 100644 --- a/src/HTMLTextLine.cc +++ b/src/HTMLTextLine.cc @@ -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) {