X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/33ac7e6f01acbac1cff0ad400d8ea7f0bfd0a62f..4b7b750dd1ffd0d26b78728adb613b282a37c058:/src/generic/tipwin.cpp diff --git a/src/generic/tipwin.cpp b/src/generic/tipwin.cpp index 9937d35037..1469b554c7 100644 --- a/src/generic/tipwin.cpp +++ b/src/generic/tipwin.cpp @@ -99,12 +99,7 @@ wxTipWindow::wxTipWindow(wxWindow *parent, { // set colours SetForegroundColour(*wxBLACK); -#if !defined(__WXPM__) - SetBackgroundColour(wxColour(0xc3ffff)); -#else - // What is 0xc3ffff, try some legable documentation for those of us who don't memorize hex codes?? - SetBackgroundColour(wxColour(*wxWHITE)); -#endif + SetBackgroundColour(wxColour(255, 255, 231)); // set position and size int x, y; wxGetMousePosition(&x, &y); @@ -159,12 +154,7 @@ wxTipWindowView::wxTipWindowView(wxWindow *parent) { // set colours SetForegroundColour(*wxBLACK); -#if !defined(__WXPM__) - SetBackgroundColour(wxColour(0xc3ffff)); -#else - // What is 0xc3ffff, try some legable documentation for those of us who don't memorize hex codes?? - SetBackgroundColour(wxColour(*wxWHITE)); -#endif + SetBackgroundColour(wxColour(255, 255, 231)); m_creationTime = wxGetLocalTime(); }