]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/encconv.h
compilation fix
[wxWidgets.git] / include / wx / encconv.h
index 7d925b35516a93c443987bbeba998feb47546414..6a54439eebf767a35339e2675b70a5273b288044 100644 (file)
 #ifndef _WX_ENCCONV_H_
 #define _WX_ENCCONV_H_
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "encconv.h"
-#endif
-
 #include "wx/defs.h"
 
 #include "wx/object.h"
@@ -58,7 +54,7 @@ class WXDLLIMPEXP_BASE wxEncodingConverter : public wxObject
     public:
 
             wxEncodingConverter();
-            ~wxEncodingConverter() { if (m_Table) delete[] m_Table; }
+            virtual ~wxEncodingConverter() { if (m_Table) delete[] m_Table; }
 
             // Initialize conversion. Both output or input encoding may
             // be wxFONTENCODING_UNICODE, but only if wxUSE_WCHAR_T is set to 1.