X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e2473d4c48a842a960292abc555747f135f93cd0..498a1eeb8d044ef64815352ecabe4c223adf8c6a:/include/wx/buffer.h diff --git a/include/wx/buffer.h b/include/wx/buffer.h index 85c986a3e9..3cea4f35f8 100644 --- a/include/wx/buffer.h +++ b/include/wx/buffer.h @@ -9,8 +9,6 @@ // Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// -// these classes are for private use only for now, they're not documented - #ifndef _WX_BUFFER_H #define _WX_BUFFER_H @@ -24,7 +22,7 @@ // ---------------------------------------------------------------------------- #define DEFINE_BUFFER(classname, chartype, strdupfunc) \ -class classname \ +class WXDLLIMPEXP_BASE classname \ { \ public: \ classname(const chartype *str) \ @@ -32,7 +30,7 @@ public: \ { \ } \ \ - classname(size_t len) \ + classname(size_t len=0) \ : m_str((chartype *)malloc((len + 1)*sizeof(chartype))) \ { \ m_str[len] = (chartype)0; \