]> git.saurik.com Git - wxWidgets.git/blobdiff - src/dfb/brush.cpp
Fixes #10432 (wxDataObjectComposite::GetAllFormats() does not work)
[wxWidgets.git] / src / dfb / brush.cpp
index efbd60cbbce83df5b8736db6243f21b6f7891872..e636ecc33eaef44ea0c3e37668ea3bb04444652b 100644 (file)
@@ -48,7 +48,7 @@ public:
         if ( style != wxSOLID && style != wxTRANSPARENT )
         {
             wxFAIL_MSG( wxT("only wxSOLID and wxTRANSPARENT styles are supported") );
-            style = wxSOLID;
+            style = wxBRUSHSTYLE_SOLID;
         }
 
         m_style = style;
@@ -96,7 +96,7 @@ wxBrushStyle wxBrush::GetStyle() const
     return M_BRUSHDATA->m_style;
 }
 
-wxColour& wxBrush::GetColour() const
+wxColour wxBrush::GetColour() const
 {
     wxCHECK_MSG( Ok(), wxNullColour, _T("invalid brush") );