]> git.saurik.com Git - wxWidgets.git/commitdiff
fix default values after types were changed
authorStefan Csomor <csomor@advancedconcepts.ch>
Mon, 17 Mar 2008 08:58:00 +0000 (08:58 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Mon, 17 Mar 2008 08:58:00 +0000 (08:58 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52581 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

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