X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/83624f79609f0d5e240c1f7d77d044bfff9702fc..a3e7d24d21f5371c88caffe4a85c8e4a5362db3f:/src/gtk1/brush.cpp diff --git a/src/gtk1/brush.cpp b/src/gtk1/brush.cpp index be6d5e2e91..b86a7615bc 100644 --- a/src/gtk1/brush.cpp +++ b/src/gtk1/brush.cpp @@ -111,7 +111,7 @@ int wxBrush::GetStyle() const { if (m_refData == NULL) { - wxFAIL_MSG( "invalid brush" ); + wxFAIL_MSG( wxT("invalid brush") ); return 0; } @@ -122,7 +122,7 @@ wxColour &wxBrush::GetColour() const { if (m_refData == NULL) { - wxFAIL_MSG( "invalid brush" ); + wxFAIL_MSG( wxT("invalid brush") ); return wxNullColour; } @@ -133,7 +133,7 @@ wxBitmap *wxBrush::GetStipple() const { if (m_refData == NULL) { - wxFAIL_MSG( "invalid brush" ); + wxFAIL_MSG( wxT("invalid brush") ); return &wxNullBitmap; }