From ee1c2aec4724517865cb8af799a5536d617299e7 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Tue, 26 Aug 2014 19:24:06 -0700 Subject: [PATCH] use icu shaper to avoid needing to build harfbuzz right now - refs #2396 --- src/text/text_layout.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/text/text_layout.cpp b/src/text/text_layout.cpp index aac5b3d88..9e1d24834 100644 --- a/src/text/text_layout.cpp +++ b/src/text/text_layout.cpp @@ -24,7 +24,7 @@ #include #include #include -#include +#include // ICU #include @@ -229,7 +229,7 @@ void text_layout::clear() void text_layout::shape_text(text_line & line) { - harfbuzz_shaper::shape_text(line, itemizer_, width_map_, font_manager_, scale_factor_); + icu_shaper::shape_text(line, itemizer_, width_map_, font_manager_, scale_factor_); } void text_layout::evaluate_properties(feature_impl const& feature, attributes const& attrs)