]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mgl/pen.cpp
Fixed small alignment issues
[wxWidgets.git] / src / mgl / pen.cpp
index 64fdb7bcef0fd6ad6e373557a551002cc8da2e89..2f1e42feec0966edece164f075cfdf0383975e68 100644 (file)
@@ -68,7 +68,7 @@ wxPenRefData::wxPenRefData()
     m_style = wxPENSTYLE_SOLID;
     m_joinStyle = wxJOIN_ROUND;
     m_capStyle = wxCAP_ROUND;
-    m_dash = (wxDash*) NULL;
+    m_dash = NULL;
     m_countDashes = 0;
 
     int x, y, c;
@@ -251,7 +251,7 @@ int wxPen::GetWidth() const
     return M_PENDATA->m_width;
 }
 
-wxColour &wxPen::GetColour() const
+wxColour wxPen::GetColour() const
 {
     wxCHECK_MSG( Ok(), wxNullColour, wxT("invalid pen") );