diff --git a/interface/wx/fontpicker.h b/interface/wx/fontpicker.h index be4b5ba3e7..defa80b439 100644 --- a/interface/wx/fontpicker.h +++ b/interface/wx/fontpicker.h @@ -113,7 +113,7 @@ public: (see wxFNTP_USE_TEXTCTRL), it's a good idea to put a limit to the maximum font size when huge fonts do not make much sense. */ - unsigned int GetMaxPointSize() const; + void SetMaxPointSize(unsigned int) const; /** Sets the currently selected font. diff --git a/interface/wx/xlocale.h b/interface/wx/xlocale.h index 5beed63c32..a6809a13b7 100644 --- a/interface/wx/xlocale.h +++ b/interface/wx/xlocale.h @@ -71,19 +71,19 @@ public: /** Creates an uninitialized locale object, IsOk() method will return @false. */ - wxLocale(); + wxXLocale(); /** Creates the locale object corresponding to the specified language. */ - wxLocale(wxLanguage lang); + wxXLocale(wxLanguage lang); /** Creates the locale object corresponding to the specified locale string. The locale string is system-dependent, use constructor taking wxLanguage for better portability. */ - wxLocale(const char* loc); + wxXLocale(const char* loc); /** Returns the global object representing the "C" locale.