]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/accel.cpp
Avoid infinite recursion in wxToolbook::OnSize() under wxMSW.
[wxWidgets.git] / src / generic / accel.cpp
index b6ae238a7581503ac67fdf99aff06055a238dcf9..29893831feab4238eb7d108f8893982a7336fdcc 100644 (file)
@@ -107,7 +107,7 @@ wxAcceleratorTable::~wxAcceleratorTable()
 {
 }
 
-bool wxAcceleratorTable::Ok() const
+bool wxAcceleratorTable::IsOk() const
 {
     return m_refData != NULL;
 }
@@ -152,7 +152,7 @@ void wxAcceleratorTable::Remove(const wxAcceleratorEntry& entry)
         node = node->GetNext();
     }
 
-    wxFAIL_MSG(_T("deleting inexistent accel from wxAcceleratorTable"));
+    wxFAIL_MSG(wxT("deleting inexistent accel from wxAcceleratorTable"));
 }
 
 // ----------------------------------------------------------------------------