X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/90527a50d74bed6ed6b4d163e8170ae8c3f5d869..1b88c4e4a6ee616da3309e28b7500fa80fbd5240:/src/generic/accel.cpp 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")); } // ----------------------------------------------------------------------------