X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8bbe427f8e5a2078b266e282453595b5a634d35c..8aaef28406647d6aa706c34f57dd151f00b18e5b:/src/gtk/brush.cpp?ds=sidebyside diff --git a/src/gtk/brush.cpp b/src/gtk/brush.cpp index 146a4d0d88..b86a7615bc 100644 --- a/src/gtk/brush.cpp +++ b/src/gtk/brush.cpp @@ -13,6 +13,8 @@ #include "wx/brush.h" +#include "gdk/gdk.h" + //----------------------------------------------------------------------------- // wxBrush //----------------------------------------------------------------------------- @@ -109,7 +111,7 @@ int wxBrush::GetStyle() const { if (m_refData == NULL) { - wxFAIL_MSG( "invalid brush" ); + wxFAIL_MSG( wxT("invalid brush") ); return 0; } @@ -120,7 +122,7 @@ wxColour &wxBrush::GetColour() const { if (m_refData == NULL) { - wxFAIL_MSG( "invalid brush" ); + wxFAIL_MSG( wxT("invalid brush") ); return wxNullColour; } @@ -131,7 +133,7 @@ wxBitmap *wxBrush::GetStipple() const { if (m_refData == NULL) { - wxFAIL_MSG( "invalid brush" ); + wxFAIL_MSG( wxT("invalid brush") ); return &wxNullBitmap; }