| 27 | } |
| 28 | |
| 29 | void FileDialogOnCancelPress(Lemon::GUI::Button* btn){ |
| 30 | btn->window->closed = true; // Tell FileDialog() that we want to close the window |
| 31 | } |
| 32 | |
| 33 | void FileDialogOnFileBoxSubmit(Lemon::GUI::TextBox* box){ |
| 34 | if(box->contents.front().find('/') != std::string::npos && box->contents.size() > NAME_MAX){ |
nothing calls this directly
no outgoing calls
no test coverage detected