]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/pen.cpp
Added size hints to dialog,
[wxWidgets.git] / src / gtk1 / pen.cpp
index a4fef2c6421b31b934fcc21a5f464f9d1007e1fb..f928f2fe54d6b29a033ba506dd4741340493aac0 100644 (file)
@@ -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;
 }