]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/radiobut.cpp
replaced T() makro with wxT() due to namespace probs, _T() exists, too
[wxWidgets.git] / src / msw / radiobut.cpp
index 61dc038847ccb77c224966b6091450ce151a79a3..2995d492286dd84876a45e29793ba9d92f27f1c2 100644 (file)
@@ -94,7 +94,7 @@ bool wxRadioButton::Create(wxWindow *parent, wxWindowID id,
                           msStyle,0,0,0,0,
                           (HWND) parent->GetHWND(), (HMENU)m_windowId, wxGetInstance(), NULL);
 
-  wxCHECK_MSG( m_hWnd, FALSE, T("Failed to create radiobutton") );
+  wxCHECK_MSG( m_hWnd, FALSE, wxT("Failed to create radiobutton") );
 
 #if wxUSE_CTL3D
   if (want3D)
@@ -112,7 +112,7 @@ bool wxRadioButton::Create(wxWindow *parent, wxWindowID id,
 //  SetValue(value);
 
   // start GRW fix
-  if (label != T(""))
+  if (label != wxT(""))
   {
     int label_width, label_height;
     GetTextExtent(label, &label_width, &label_height, NULL, NULL, & this->GetFont());