summaryrefslogtreecommitdiff
path: root/tools/editor/property_editor.cpp
diff options
context:
space:
mode:
authorIgnacio Etcheverry <neikeq@users.noreply.github.com>2016-10-01 00:48:38 +0200
committerGitHub <noreply@github.com>2016-10-01 00:48:38 +0200
commitf30602c67a86bce393c5e67551755e0a8b3f0dd4 (patch)
treea37dd63fcf16a0776161abf1cdf7e52f9d99f52c /tools/editor/property_editor.cpp
parentdabcabe9815612c7ef1c99909b14d632f13df165 (diff)
parentc333659ebcdf41851761ebd3d8edc8e5e822164e (diff)
Merge pull request #6652 from volzhs/word-wrap
Fix typo for word_wrap
Diffstat (limited to 'tools/editor/property_editor.cpp')
-rw-r--r--tools/editor/property_editor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/editor/property_editor.cpp b/tools/editor/property_editor.cpp
index 1a8d373f7f..6641297491 100644
--- a/tools/editor/property_editor.cpp
+++ b/tools/editor/property_editor.cpp
@@ -3049,7 +3049,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);
}
@@ -3142,7 +3142,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);
}
}
}