Fixed problem with wxPen::SetDashes. (An array of bytes was typcast

to an array of DWORDs.)


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11705 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2001-09-27 00:35:24 +00:00
parent 217cb2fab8
commit edd971741e
2 changed files with 6 additions and 6 deletions

View File

@@ -38,7 +38,7 @@ protected:
int m_cap ;
wxBitmap m_stipple ;
int m_nbDash ;
wxMSWDash * m_dash ;
wxDash * m_dash ;
wxColour m_colour;
WXHPEN m_hPen;
};