]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/buffer.h
Make wxBase compiled for wxMotif compatible with wxbase compiled
[wxWidgets.git] / include / wx / buffer.h
index 1396ef5d26fe1a3ef0d5222b8738d7ae8c93954d..3cea4f35f807da5d870387da6407cd6913b460ed 100644 (file)
@@ -22,7 +22,7 @@
 // ----------------------------------------------------------------------------
 
 #define DEFINE_BUFFER(classname, chartype, strdupfunc)                      \
-class classname                                                             \
+class WXDLLIMPEXP_BASE classname                                            \
 {                                                                           \
 public:                                                                     \
     classname(const chartype *str)                                          \
@@ -30,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;                                           \