From: Vadim Zeitlin Date: Mon, 13 Oct 2003 23:49:18 +0000 (+0000) Subject: oops, compilation fix X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/2197563c78b5c96fd739c6804e6b3373cc18cdc4 oops, compilation fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24173 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/encconv.h b/include/wx/encconv.h index 5bf29e7470..d99eaea5e2 100644 --- a/include/wx/encconv.h +++ b/include/wx/encconv.h @@ -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: