]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/menu.cpp
Remove unused static constant.
[wxWidgets.git] / src / gtk1 / menu.cpp
index 5d65aa257d2ffa53056d8cfed2101c821294a715..a14e6b063ae51758ca743858f488ccb85a032a1d 100644 (file)
@@ -579,7 +579,7 @@ static void gtk_menu_clicked_callback( GtkWidget *widget, wxMenu *menu )
 
     /* should find it for normal (not popup) menu */
     wxASSERT_MSG( (id != -1) || (menu->GetInvokingWindow() != NULL),
 
     /* should find it for normal (not popup) menu */
     wxASSERT_MSG( (id != -1) || (menu->GetInvokingWindow() != NULL),
-                  _T("menu item not found in gtk_menu_clicked_callback") );
+                  wxT("menu item not found in gtk_menu_clicked_callback") );
 
     if (!menu->IsEnabled(id))
         return;
 
     if (!menu->IsEnabled(id))
         return;
@@ -902,7 +902,7 @@ void wxMenuItem::Check( bool check )
             break;
 
         default:
             break;
 
         default:
-            wxFAIL_MSG( _T("can't check this item") );
+            wxFAIL_MSG( wxT("can't check this item") );
     }
 }
 
     }
 }
 
@@ -1037,7 +1037,7 @@ bool wxMenu::GtkAppend(wxMenuItem *mitem, int pos)
             }
 
             default:
             }
 
             default:
-                wxFAIL_MSG( _T("unexpected menu item kind") );
+                wxFAIL_MSG( wxT("unexpected menu item kind") );
                 // fall through
 
             case wxITEM_NORMAL:
                 // fall through
 
             case wxITEM_NORMAL: