From: Francesco Montorsi Date: Sun, 12 Apr 2009 16:06:43 +0000 (+0000) Subject: no real change; just fix the argument name of the wxFont(const wxString&) ctor under... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/34be948fdb79b001bfd81e402e786a802a2bfee5 no real change; just fix the argument name of the wxFont(const wxString&) ctor under wxGTK since it was misleading git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60112 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/gtk/font.h b/include/wx/gtk/font.h index efd441ad5a..4fb065741c 100644 --- a/include/wx/gtk/font.h +++ b/include/wx/gtk/font.h @@ -20,9 +20,9 @@ public: wxFont() { } // wxGTK-specific - wxFont(const wxString& fontname) + wxFont(const wxString& nativeFontInfoString) { - Create(fontname); + Create(nativeFontInfoString); } wxFont(const wxNativeFontInfo& info); diff --git a/src/gtk/font.cpp b/src/gtk/font.cpp index d717d3a5d7..30828c0fac 100644 --- a/src/gtk/font.cpp +++ b/src/gtk/font.cpp @@ -56,8 +56,7 @@ public: const wxString& faceName = wxEmptyString, wxFontEncoding encoding = wxFONTENCODING_DEFAULT); - // from XFLD - wxFontRefData(const wxString& fontname); + wxFontRefData(const wxString& nativeFontInfoString); // copy ctor wxFontRefData( const wxFontRefData& data ); @@ -222,9 +221,9 @@ wxFontRefData::wxFontRefData(int size, wxFontFamily family, wxFontStyle style, Init(size, family, style, weight, underlined, faceName, encoding); } -wxFontRefData::wxFontRefData(const wxString& fontname) +wxFontRefData::wxFontRefData(const wxString& nativeFontInfoString) { - m_nativeFontInfo.FromString( fontname ); + m_nativeFontInfo.FromString( nativeFontInfoString ); InitFromNative(); }