From 2197563c78b5c96fd739c6804e6b3373cc18cdc4 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 13 Oct 2003 23:49:18 +0000 Subject: [PATCH] oops, compilation fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24173 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/encconv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.50.0