X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2bda0e173844e8e0f8acf4e8ad8b5c26e5c6fe5d..54ff4a701f6c83aad8387a31b652f209681210cb:/src/msw/font.cpp diff --git a/src/msw/font.cpp b/src/msw/font.cpp index 727048a9b8..66a9fdbb79 100644 --- a/src/msw/font.cpp +++ b/src/msw/font.cpp @@ -146,7 +146,7 @@ bool wxFont::RealizeResource(void) else if (M_FONTDATA->m_weight == wxBOLD) ff_weight = FW_BOLD; -#if defined(__X__) || (defined(__WINDOWS__) && USE_PORTABLE_FONTS_IN_MSW) +#if defined(__X__) || (defined(__WXMSW__) && USE_PORTABLE_FONTS_IN_MSW) ff_face = wxTheFontNameDirectory.GetScreenName(M_FONTDATA->m_family, M_FONTDATA->m_weight, M_FONTDATA->m_style); #else ff_face = M_FONTDATA->m_faceName; @@ -197,7 +197,7 @@ bool wxFont::RealizeResource(void) M_FONTDATA->m_hFont = (WXHFONT) CreateFont(nHeight, 0, 0, 0,ff_weight,ff_italic,(BYTE)ff_underline, 0, ANSI_CHARSET, OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS, PROOF_QUALITY, DEFAULT_PITCH | ff_family, (ff_face == "" ? NULL : (const char *)ff_face)); -#ifdef DEBUG_CREATE +#ifdef WXDEBUG_CREATE if (m_hFont==NULL) wxError("Cannot create font","Internal Error") ; #endif return (M_FONTDATA->m_hFont != (WXHFONT) NULL); @@ -243,28 +243,28 @@ bool wxFont::IsFree(void) return (M_FONTDATA && (M_FONTDATA->m_hFont == 0)); } -void wxFont::SetPointSize(const int pointSize) +void wxFont::SetPointSize(int pointSize) { if ( !m_refData ) m_refData = new wxFontRefData; M_FONTDATA->m_pointSize = pointSize; } -void wxFont::SetFamily(const int family) +void wxFont::SetFamily(int family) { if ( !m_refData ) m_refData = new wxFontRefData; M_FONTDATA->m_family = family; } -void wxFont::SetStyle(const int style) +void wxFont::SetStyle(int style) { if ( !m_refData ) m_refData = new wxFontRefData; M_FONTDATA->m_style = style; } -void wxFont::SetWeight(const int weight) +void wxFont::SetWeight(int weight) { if ( !m_refData ) m_refData = new wxFontRefData; @@ -278,7 +278,7 @@ void wxFont::SetFaceName(const wxString& faceName) M_FONTDATA->m_faceName = faceName; } -void wxFont::SetUnderlined(const bool underlined) +void wxFont::SetUnderlined(bool underlined) { if ( !m_refData ) m_refData = new wxFontRefData;