Eliminate a bogus limit of 100 for a bunch of rarely-used options

This commit is contained in:
Thomas Goyne 2013-08-17 15:06:07 -07:00
parent dd6542c143
commit b68578f1d9
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ protected:
wxFlexGridSizer* PageSizer(wxString name);
void CellSkip(wxFlexGridSizer *flex);
wxControl *OptionAdd(wxFlexGridSizer *flex, const wxString &name, const char *opt_name, double min=0, double max=100, double inc=1);
wxControl *OptionAdd(wxFlexGridSizer *flex, const wxString &name, const char *opt_name, double min=0, double max=INT_MAX, double inc=1);
void OptionChoice(wxFlexGridSizer *flex, const wxString &name, const wxArrayString &choices, const char *opt_name);
void OptionBrowse(wxFlexGridSizer *flex, const wxString &name, const char *opt_name, wxControl *enabler = 0, bool do_enable = false);
void OptionFont(wxSizer *sizer, std::string opt_prefix);