From 4ccae30a4dcdd995b3b566f8901a42509774d3d8 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 25 Jan 2002 14:45:20 +0000 Subject: [PATCH] compilation fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13804 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/encconv.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/encconv.cpp b/src/common/encconv.cpp index b4e88adf63..e4763473e5 100644 --- a/src/common/encconv.cpp +++ b/src/common/encconv.cpp @@ -276,7 +276,8 @@ wxString wxEncodingConverter::Convert(const wxString& input) wxString s; const wxChar *i; - wxCHECK_RET(m_Table != NULL, wxT("You must call wxEncodingConverter::Init() before actually converting!")); + wxCHECK_MSG(m_Table != NULL, s, + wxT("You must call wxEncodingConverter::Init() before actually converting!")); if (m_UnicodeInput) {