typo in wxWCharBuffer definition fixed

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@18016 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-11-30 22:22:25 +00:00
parent ebf126595a
commit 054cab527c

View File

@@ -74,7 +74,7 @@ public: \
classname& operator=(const chartype *str) \
{ \
free(m_str); \
m_str = str ? strdup(str) : NULL; \
m_str = str ? strdupfunc(str) : NULL; \
return *this; \
} \
\