]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stubs/pen.cpp
correction to maintain data array in synch with string array
[wxWidgets.git] / src / stubs / pen.cpp
index 2502b392fb674055cd560cb4061ea3757a91bb11..ff76f284a4b16a9f976fa835ce94b02a84884dd5 100644 (file)
@@ -26,7 +26,7 @@ wxPenRefData::wxPenRefData()
     m_join = wxJOIN_ROUND ;
     m_cap = wxCAP_ROUND ;
     m_nbDash = 0 ;
-    m_dash = ;
+    m_dash = (wxXSTUBXDash*)NULL;
 /* TODO: null data
     m_hPen = 0;
 */
@@ -76,7 +76,7 @@ wxPen::wxPen(const wxColour& col, int Width, int Style)
     M_PENDATA->m_join = wxJOIN_ROUND ;
     M_PENDATA->m_cap = wxCAP_ROUND ;
     M_PENDATA->m_nbDash = 0 ;
-    M_PENDATA->m_dash = ;
+    M_PENDATA->m_dash = (wxXSTUBXDash*)NULL;
 
     RealizeResource();
 
@@ -94,7 +94,7 @@ wxPen::wxPen(const wxBitmap& stipple, int Width)
     M_PENDATA->m_join = wxJOIN_ROUND ;
     M_PENDATA->m_cap = wxCAP_ROUND ;
     M_PENDATA->m_nbDash = 0 ;
-    M_PENDATA->m_dash = ;
+    M_PENDATA->m_dash = (wxXSTUBXDash*)NULL;
 
     RealizeResource();
 
@@ -168,7 +168,7 @@ void wxPen::SetDashes(int nb_dashes, const wxDash *Dash)
     Unshare();
 
     M_PENDATA->m_nbDash = nb_dashes;
-    M_PENDATA->m_dash = (wxDash *)Dash;
+    M_PENDATA->m_dash = (wxXSTUBXDash*)Dash;
   
     RealizeResource();
 }