]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/pen.cpp
compilation fix for wxUSE_GUI=0
[wxWidgets.git] / src / mac / carbon / pen.cpp
index 6118f378cb377527bf042b791302e4fb851de43f..b1e1cccb01c69e3ece2706a64a443cec35993577 100644 (file)
@@ -172,17 +172,17 @@ int wxPen::GetWidth() const
 
 wxPenStyle wxPen::GetStyle() const
 {
-    return (M_PENDATA ? M_PENDATA->m_style : 0);
+    return (M_PENDATA ? M_PENDATA->m_style : wxPENSTYLE_SOLID);
 }
 
 wxPenJoin wxPen::GetJoin() const
 {
-    return (M_PENDATA ? M_PENDATA->m_join : 0);
+    return (M_PENDATA ? M_PENDATA->m_join : wxJOIN_INVALID);
 }
 
 wxPenCap wxPen::GetCap() const
 {
-    return (M_PENDATA ? M_PENDATA->m_cap : 0);
+    return (M_PENDATA ? M_PENDATA->m_cap : wxCAP_INVALID);
 }
 
 int wxPen::GetDashes(wxDash **ptr) const