From: Guillermo Rodriguez Garcia Date: Mon, 13 Mar 2000 13:00:26 +0000 (+0000) Subject: Use system default font for all platforms X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/8290d43d0d43369d007f1c47abf98a45da461a30 Use system default font for all platforms git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6650 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/wincmn.cpp b/src/common/wincmn.cpp index 01532a8bfb..bd49ebf5dd 100644 --- a/src/common/wincmn.cpp +++ b/src/common/wincmn.cpp @@ -123,12 +123,12 @@ void wxWindowBase::InitBase() // m_foregroundColour = *wxBLACK; // TODO take this from sys settings too? m_foregroundColour = wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOWTEXT); -#if !defined(__WXMAC__) && !defined(__WXGTK__) + // GRG, changed Mar/2000 +#if 0 // !defined(__WXMAC__) && !defined(__WXGTK__) m_font = *wxSWISS_FONT; // and this? #else m_font = settings.GetSystemFont(wxSYS_DEFAULT_GUI_FONT); #endif - // no style bits m_exStyle = m_windowStyle = 0;