From 054cab527ca37713ca734b99c533cc5e45c48244 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 30 Nov 2002 22:22:25 +0000 Subject: [PATCH] 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 --- include/wx/buffer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/buffer.h b/include/wx/buffer.h index 45e0a06bc2..b913e75100 100644 --- a/include/wx/buffer.h +++ b/include/wx/buffer.h @@ -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; \ } \ \