Fix typo for word_wrap

(cherry picked from commit c333659ebc)
This commit is contained in:
volzhs 2016-09-30 03:28:05 +09:00 committed by Rémi Verschelde
parent 721599c797
commit 73e7ccabf5
4 changed files with 5 additions and 5 deletions

View file

@ -2785,7 +2785,7 @@ void PropertyEditor::update_tree() {
if (E) {
descr=E->get().brief_description;
}
class_descr_cache[type]=descr.world_wrap(80);
class_descr_cache[type]=descr.word_wrap(80);
}
@ -2878,7 +2878,7 @@ void PropertyEditor::update_tree() {
if (E) {
for(int i=0;i<E->get().methods.size();i++) {
if (E->get().methods[i].name==setter.operator String()) {
descr=E->get().methods[i].description.strip_edges().world_wrap(80);
descr=E->get().methods[i].description.strip_edges().word_wrap(80);
}
}
}