]> git.saurik.com Git - wxWidgets.git/commitdiff
Use the black pen for the border on Windows now too.
authorRobin Dunn <robin@alldunn.com>
Fri, 19 Oct 2001 15:17:13 +0000 (15:17 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 19 Oct 2001 15:17:13 +0000 (15:17 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12085 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/tipwin.cpp

index 06e94b763647df466649055c08b57a5cbe93ea56..ed4939a286683da46258b30fd751ac1a64266f0e 100644 (file)
@@ -96,7 +96,7 @@ wxTipWindow::wxTipWindow(wxWindow *parent,
                          wxCoord maxLength, wxTipWindow** windowPtr)
            : wxFrame(parent, -1, _T(""),
                      wxDefaultPosition, wxDefaultSize,
-                     wxNO_BORDER | wxFRAME_FLOAT_ON_PARENT)
+                     wxNO_BORDER | wxFRAME_NO_TASKBAR )
 {
     // set colours
     SetForegroundColour(*wxBLACK);
@@ -250,12 +250,7 @@ void wxTipWindowView::OnPaint(wxPaintEvent& WXUNUSED(event))
     // first filll the background
     dc.SetBrush(wxBrush(GetBackgroundColour(), wxSOLID));
 
-    // Under Windows, you apparently get a thin black border whether you like it or not :-(
-#ifdef __WXMSW__
-    dc.SetPen( * wxTRANSPARENT_PEN );
-#else
     dc.SetPen( * wxBLACK_PEN );
-#endif
     dc.DrawRectangle(rect);
 
     // and then draw the text line by line