Don't use Allegro's OTHER_PATH_SEPARATOR_ constant in ui::Entry

This commit is contained in:
David Capello 2014-09-20 22:54:20 -03:00
parent 30d09c9334
commit 6a10b77baf

View File

@ -667,7 +667,7 @@ void Entry::executeCmd(EntryCmd cmd, int unicodeChar, bool shift_pressed)
#define IS_WORD_CHAR(ch) \ #define IS_WORD_CHAR(ch) \
(!((!ch) || (std::isspace(ch)) || \ (!((!ch) || (std::isspace(ch)) || \
((ch) == '/') || ((ch) == OTHER_PATH_SEPARATOR))) ((ch) == '/') || ((ch) == '\\')))
void Entry::forwardWord() void Entry::forwardWord()
{ {