I get "error: character too large for enclosing character literal type" when building on macOS. These two characters got incorrectly converted incorrectly to UTF-8:
|
(((unsigned int)theChar >= (unsigned int)('�')) && ((unsigned int)theChar <= (unsigned int)('�'))) || |
It should be:
(((unsigned int)theChar >= (unsigned int)(L'À')) && ((unsigned int)theChar <= (unsigned int)(L'ÿ'))) ||
I get "error: character too large for enclosing character literal type" when building on macOS. These two characters got incorrectly converted incorrectly to UTF-8:
PopLib/PopLib/widget/editwidget.cpp
Line 251 in 3ccce94
It should be: