| 258 | } |
| 259 | |
| 260 | agi::fs::path SaveFileSelector(wxString const& message, std::string const& option_name, std::string const& default_filename, std::string const& default_extension, std::string const& wildcard, wxWindow *parent) { |
| 261 | return FileSelector(message, option_name, default_filename, default_extension, wildcard, wxFD_SAVE | wxFD_OVERWRITE_PROMPT, parent); |
| 262 | } |
| 263 | |
| 264 | wxString LocalizedLanguageName(wxString const& lang) { |
| 265 | icu::Locale iculoc(lang.c_str()); |
no test coverage detected