hi, i just download the latest version from git hub and i got in my code this linker error:
unresolved external symbol "public: static class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > tgui::EditBox::Validator::Int" (?Int@Validator@EditBox@tgui@@2V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@A)
1>
if i choose the other way (well , i do not quite understand the two pair of brackets) it is working.
pEditBoxServerPort->setInputValidator(tgui::EditBox::Validator::Int); -->linker error
pEditBoxServerPort->setInputValidator("[0-9]*");->working as expected (only numbers)