From 26c040dfc64d21f6fb32f6be68b1d59b4642e62b Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 4 Jan 2014 22:50:10 +0000 Subject: [PATCH] Fix another wxDOT deprecation warning, this time in wxGTK build. Use wxPENSTYLE_DOT instead. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@75549 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/propgrid/property.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/propgrid/property.cpp b/src/propgrid/property.cpp index 1cb4fa0ff6..13ce543918 100644 --- a/src/propgrid/property.cpp +++ b/src/propgrid/property.cpp @@ -73,7 +73,7 @@ static void wxPGDrawFocusRect( wxDC& dc, const wxRect& rect ) #else dc.SetLogicalFunction(wxINVERT); - dc.SetPen(wxPen(*wxBLACK,1,wxDOT)); + dc.SetPen(wxPen(*wxBLACK,1,wxPENSTYLE_DOT)); dc.SetBrush(*wxTRANSPARENT_BRUSH); dc.DrawRectangle(rect);