From 9dcd75f8daf6cb7240b834da9354cc3a785659fd Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 22 Jan 2002 15:39:40 +0000 Subject: [PATCH] use standard colours in all ports git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13744 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/tipwin.cpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/generic/tipwin.cpp b/src/generic/tipwin.cpp index 30d3b8cda9..84d8d86f62 100644 --- a/src/generic/tipwin.cpp +++ b/src/generic/tipwin.cpp @@ -135,15 +135,8 @@ wxTipWindow::wxTipWindow(wxWindow *parent, } // set colours - // - // VZ: why don't we use wxSystemSettings for !MSW? (FIXME) -#ifdef __WXMSW__ SetForegroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_INFOTEXT)); SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_INFOBK)); -#else - SetForegroundColour(*wxBLACK); - SetBackgroundColour(*wxWHITE); -#endif // set size, position and show it m_view = new wxTipWindowView(this); @@ -240,15 +233,8 @@ wxTipWindowView::wxTipWindowView(wxWindow *parent) wxNO_BORDER) { // set colours - // - // VZ: why don't we use wxSystemSettings for !MSW? (FIXME) -#ifdef __WXMSW__ SetForegroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_INFOTEXT)); SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_INFOBK)); -#else - SetForegroundColour(*wxBLACK); - SetBackgroundColour(*wxWHITE); -#endif #if !wxUSE_POPUPWIN m_creationTime = wxGetLocalTime(); -- 2.45.2