projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
170a35e
)
compilation fix
author
Vadim Zeitlin
<vadim@wxwidgets.org>
Fri, 25 Jan 2002 14:45:20 +0000
(14:45 +0000)
committer
Vadim Zeitlin
<vadim@wxwidgets.org>
Fri, 25 Jan 2002 14:45:20 +0000
(14:45 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13804
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
src/common/encconv.cpp
patch
|
blob
|
blame
|
history
diff --git
a/src/common/encconv.cpp
b/src/common/encconv.cpp
index b4e88adf639374b3417bd43b4d2c548f19f509c5..e4763473e5aa20bf086c6b7ba6e4c87f5203fc2c 100644
(file)
--- 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;
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)
{
if (m_UnicodeInput)
{