]> git.saurik.com Git - wxWidgets.git/blobdiff - src/dfb/pen.cpp
on demand creation of native CGContexts , so that pure text measuring contexts don...
[wxWidgets.git] / src / dfb / pen.cpp
index f61ff930a5cafff1b6ffa8db0f3956d2387a2df2..e2f1079d0a00af230fa589fae0c89ecce89a623b 100644 (file)
@@ -40,7 +40,7 @@ public:
 
     void SetStyle(int style)
     {
-        if ( style != wxSOLID && style == wxTRANSPARENT )
+        if ( style != wxSOLID && style != wxTRANSPARENT )
         {
             wxFAIL_MSG( _T("only wxSOLID and wxTRANSPARENT styles are supported") );
             style = wxSOLID;
@@ -189,7 +189,7 @@ wxBitmap *wxPen::GetStipple() const
     return NULL;
 }
 
-bool wxPen::Ok() const
+bool wxPen::IsOk() const
 {
     return ((m_refData) && M_PENDATA->m_colour.Ok());
 }