X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e90c1d2a19361551eb07778280f22be3e759cf64..a8a32ce2cf162a218683c3708109ab58884717b7:/src/gtk1/pen.cpp?ds=inline diff --git a/src/gtk1/pen.cpp b/src/gtk1/pen.cpp index a4fef2c642..f928f2fe54 100644 --- a/src/gtk1/pen.cpp +++ b/src/gtk1/pen.cpp @@ -171,35 +171,35 @@ wxDash* wxPen::GetDash() const int wxPen::GetCap() const { - wxCHECK_MSG( Ok(), -1, T("invalid pen") ); + wxCHECK_MSG( Ok(), -1, wxT("invalid pen") ); return M_PENDATA->m_capStyle; } int wxPen::GetJoin() const { - wxCHECK_MSG( Ok(), -1, T("invalid pen") ); + wxCHECK_MSG( Ok(), -1, wxT("invalid pen") ); return M_PENDATA->m_joinStyle; } int wxPen::GetStyle() const { - wxCHECK_MSG( Ok(), -1, T("invalid pen") ); + wxCHECK_MSG( Ok(), -1, wxT("invalid pen") ); return M_PENDATA->m_style; } int wxPen::GetWidth() const { - wxCHECK_MSG( Ok(), -1, T("invalid pen") ); + wxCHECK_MSG( Ok(), -1, wxT("invalid pen") ); return M_PENDATA->m_width; } wxColour &wxPen::GetColour() const { - wxCHECK_MSG( Ok(), wxNullColour, T("invalid pen") ); + wxCHECK_MSG( Ok(), wxNullColour, wxT("invalid pen") ); return M_PENDATA->m_colour; }