[Bug] Small typo in TextComponent.cpp
Posted: Thu Jan 02, 2014 20:58
In CEGUI 0.8.3, in file src/falagard/TextComponent.cpp, there is a typo:
should be
This only manifests when compiling with CEGUI_BIDI_SUPPORT enabled.
Code: Select all
else if (d_text.empty())
should be
Code: Select all
else if (d_textLogical.empty())
This only manifests when compiling with CEGUI_BIDI_SUPPORT enabled.