oops, compilation fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24173 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-10-13 23:49:18 +00:00
parent 5bc97d1b81
commit 2197563c78

View File

@@ -146,7 +146,7 @@ class WXDLLIMPEXP_BASE wxEncodingConverter : public wxObject
// to convert in the other)
static bool CanConvert(wxFontEncoding encIn, wxFontEncoding encOut)
{
return GetAllEquivalents(encIn).Find(encOut) != wxNOT_FOUND;
return GetAllEquivalents(encIn).Index(encOut) != wxNOT_FOUND;
}
private: