]> git.saurik.com Git - wxWidgets.git/blobdiff - src/dfb/pen.cpp
Make wxWindow::SetSizeHints() do nothing.
[wxWidgets.git] / src / dfb / pen.cpp
index 58da1f8e6ba8d0da47e4feb5f0f586ecde27a079..e2f1079d0a00af230fa589fae0c89ecce89a623b 100644 (file)
@@ -40,7 +40,7 @@ public:
 
     void SetStyle(int style)
     {
-        if ( m_style != wxSOLID && m_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());
 }