X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2bda0e173844e8e0f8acf4e8ad8b5c26e5c6fe5d..670c3849fdc5d3fa9b9586a973acfdbb26f80d95:/include/wx/msw/font.h diff --git a/include/wx/msw/font.h b/include/wx/msw/font.h index 2ed2b248f1..5c1f7dc6b0 100644 --- a/include/wx/msw/font.h +++ b/include/wx/msw/font.h @@ -82,12 +82,12 @@ public: wxString GetWeightString(void) const ; inline bool GetUnderlined(void) const { return M_FONTDATA->m_underlined; } - void SetPointSize(const int pointSize); - void SetFamily(const int family); - void SetStyle(const int style); - void SetWeight(const int weight); + void SetPointSize(int pointSize); + void SetFamily(int family); + void SetStyle(int style); + void SetWeight(int weight); void SetFaceName(const wxString& faceName); - void SetUnderlined(const bool underlined); + void SetUnderlined(bool underlined); inline wxFont& operator = (const wxFont& font) { if (*this == font) return (*this); Ref(font); return *this; } inline bool operator == (const wxFont& font) { return m_refData == font.m_refData; }