X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/092ee46f03b0af02dd8129e0e3e4619ed33c2032..c49f88797839378826d25ba9f21fd1be8d9aa6d9:/include/wx/strconv.h?ds=inline diff --git a/include/wx/strconv.h b/include/wx/strconv.h index 0fbe71bfd5..d953b892af 100644 --- a/include/wx/strconv.h +++ b/include/wx/strconv.h @@ -223,6 +223,10 @@ public: return m_conv->GetMBNulLen(); } +#if wxUSE_UNICODE_UTF8 + virtual bool IsUTF8() const { return m_conv->IsUTF8(); } +#endif + virtual wxMBConv *Clone() const { return new wxConvBrokenFileNames(*this); } private: @@ -399,6 +403,10 @@ public: virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const; virtual size_t GetMBNulLen() const; +#if wxUSE_UNICODE_UTF8 + virtual bool IsUTF8() const; +#endif + virtual wxMBConv *Clone() const { return new wxCSConv(*this); } void Clear();