]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/convauto.h
Remove virtual from the newly added Create methods.
[wxWidgets.git] / include / wx / convauto.h
index 6dc550ab49017065a23e583c589adbbb8739ad3b..fcd26532e9d79b43edc466389bfe39bc491c21e7 100644 (file)
@@ -27,16 +27,16 @@ public:
 
     // copy ctor doesn't initialize anything neither as conversion can only be
     // deduced on first use
-    wxConvAuto(const wxConvAuto& WXUNUSED(other)) { m_conv = NULL; }
+    wxConvAuto(const wxConvAuto& WXUNUSED(other)) : wxMBConv() { m_conv = NULL; }
 
     virtual ~wxConvAuto() { if ( m_conv && m_ownsConv ) delete m_conv; }
 
     // override the base class virtual function(s) to use our m_conv
     virtual size_t ToWChar(wchar_t *dst, size_t dstLen,
-                           const char *src, size_t srcLen = -1) const;
+                           const char *src, size_t srcLen = wxNO_LEN) const;
 
     virtual size_t FromWChar(char *dst, size_t dstLen,
-                             const wchar_t *src, size_t srcLen = -1) const;
+                             const wchar_t *src, size_t srcLen = wxNO_LEN) const;
 
     virtual size_t GetMBNulLen() const { return m_conv->GetMBNulLen(); }
 
@@ -92,7 +92,7 @@ private:
     bool m_consumedBOM;
 
 
-    DECLARE_NO_ASSIGN_CLASS(wxConvAuto);
+    DECLARE_NO_ASSIGN_CLASS(wxConvAuto)
 };
 
 #endif // wxUSE_WCHAR_T