From 8290d43d0d43369d007f1c47abf98a45da461a30 Mon Sep 17 00:00:00 2001 From: Guillermo Rodriguez Garcia Date: Mon, 13 Mar 2000 13:00:26 +0000 Subject: [PATCH] Use system default font for all platforms git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6650 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/wincmn.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.45.2