Add a missing static

This commit is contained in:
Thomas Goyne 2014-12-30 14:53:06 -08:00
parent 62186e916a
commit 1d82a75595
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ wxString FontFace(std::string opt_prefix) {
return to_wx(value);
}
agi::fs::path FileSelector(wxString const& message, std::string const& option_name, std::string const& default_filename, std::string const& default_extension, wxString const& wildcard, int flags, wxWindow *parent) {
static agi::fs::path FileSelector(wxString const& message, std::string const& option_name, std::string const& default_filename, std::string const& default_extension, wxString const& wildcard, int flags, wxWindow *parent) {
wxString path;
if (!option_name.empty())
path = to_wx(OPT_GET(option_name)->GetString());