X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/90527a50d74bed6ed6b4d163e8170ae8c3f5d869..b5123fb66f54f5c5019586c2042f993ae21eb0ae:/src/generic/accel.cpp?ds=inline diff --git a/src/generic/accel.cpp b/src/generic/accel.cpp index b6ae238a75..29893831fe 100644 --- a/src/generic/accel.cpp +++ b/src/generic/accel.cpp @@ -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")); } // ----------------------------------------------------------------------------