Codebase list mozc / 92c3411
Fix warning C4838 BUG=#315 TEST= REF_BUG=26932823 REF_CL=114656293 REF_TIME=2016-02-14T17:45:29-08:00 REF_TIME_RAW=1455500729 -0800 Yohei Yukawa 8 years ago
2 changed file(s) with 5 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
00 MAJOR=2
11 MINOR=17
2 BUILD=2484
2 BUILD=2485
33 REVISION=102
44 # NACL_DICTIONARY_VERSION is the target version of the system dictionary to be
55 # downloaded by NaCl Mozc.
399399 for (size_t i = 0; i < display_list.size(); ++i) {
400400 const auto &item = display_list[i];
401401 const D2D1_RECT_F render_rect = {
402 item.rect.Left(), item.rect.Top(), item.rect.Right(),
403 item.rect.Bottom(),
402 static_cast<float>(item.rect.Left()),
403 static_cast<float>(item.rect.Top()),
404 static_cast<float>(item.rect.Right()),
405 static_cast<float>(item.rect.Bottom()),
404406 };
405407 dc_render_target_->DrawText(item.text.data(),
406408 item.text.size(),