Add an explicit #warning for missing dashes support in wxX11 wxDC

This is better than warnings about unused dash-related variables.
This commit is contained in:
Vadim Zeitlin 2020-07-06 17:25:20 +02:00
parent 6119a7c630
commit b1f5203a08

View File

@ -1965,6 +1965,10 @@ void wxWindowDCImpl::SetPen( const wxPen &pen )
}
}
wxUnusedVar(req_dash);
wxUnusedVar(req_nb_dash);
#warning "TODO: support for dashed lines in wxX11"
int capStyle = CapRound;
switch (m_pen.GetCap())
{