]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/pen.cpp
Made tearoff menus work for gtk :-)
[wxWidgets.git] / src / gtk1 / pen.cpp
index 3152074605dfd075b720b6568b2acc4cc060a114..1e2205e78d2eb076b215bc5c367a720fae10b3a9 100644 (file)
@@ -138,35 +138,35 @@ void wxPen::SetWidth( int width )
 
 int wxPen::GetCap() const
 {
-    wxCHECK_MSG( Ok(), -1, "invalid pen" );
+    wxCHECK_MSG( Ok(), -1, _T("invalid pen") );
 
     return M_PENDATA->m_capStyle;
 }
 
 int wxPen::GetJoin() const
 {
-    wxCHECK_MSG( Ok(), -1, "invalid pen" );
+    wxCHECK_MSG( Ok(), -1, _T("invalid pen") );
 
     return M_PENDATA->m_joinStyle;
 }
 
 int wxPen::GetStyle() const
 {
-    wxCHECK_MSG( Ok(), -1, "invalid pen" );
+    wxCHECK_MSG( Ok(), -1, _T("invalid pen") );
 
     return M_PENDATA->m_style;
 }
 
 int wxPen::GetWidth() const
 {
-    wxCHECK_MSG( Ok(), -1, "invalid pen" );
+    wxCHECK_MSG( Ok(), -1, _T("invalid pen") );
 
     return M_PENDATA->m_width;
 }
 
 wxColour &wxPen::GetColour() const
 {
-    wxCHECK_MSG( Ok(), wxNullColour, "invalid pen" );
+    wxCHECK_MSG( Ok(), wxNullColour, _T("invalid pen") );
 
     return M_PENDATA->m_colour;
 }