Fix variable name.

This commit is contained in:
Hermann Kraus 2012-08-01 03:07:31 +02:00
parent 21c9a6fcde
commit adb4bc9c01

View file

@ -119,7 +119,7 @@ void text_itemizer::itemize_direction(unsigned start, unsigned end)
run_start += start; //Add offset to compensate offset in setPara
std::cout << "visual run, rtl:" << direction
<< " start:" << start << " length:" << length << "\n";
direction_runs_.push_back(direction_run_t(direction, start, start+length));
direction_runs_.push_back(direction_run_t(direction, run_start, run_start+length));
}
}
}