]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/strconv.h
always forcing a relayout when position changes, making mlte a system option
[wxWidgets.git] / include / wx / strconv.h
index 2d8215148132549112d98478ed71c8867fb1fb7d..58b9d754483103800c6d417302cc9ed018f71edd 100644 (file)
@@ -236,30 +236,6 @@ private:
     bool m_deferred;
 };
 
-#ifdef __UNIX__
-
-// ----------------------------------------------------------------------------
-// wxConvBrokenFileNames is made for GTK2 in Unicode mode when
-// files are accidentally written in an encoding which is not
-// the system encoding. Typically, the system encoding will be
-// UTF8 but there might be files stored in ISO8859-1 on disk.
-// ----------------------------------------------------------------------------
-
-class wxConvBrokenFileNames : public wxMBConv
-{
-public:
-    wxConvBrokenFileNames();
-    virtual ~wxConvBrokenFileNames() { delete m_conv; }
-
-    virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const;
-    virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const;
-
-private:
-    // the conversion object we forward to
-    wxMBConv *m_conv;
-};
-#endif
-// __UNIX__
 
 // ----------------------------------------------------------------------------
 // declare predefined conversion objects