X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5f4d18209157a5ce671f101ec25734ac075a79f9..d154ab3d291c0c1463d77818f07fb8a5bfe6bfb0:/include/wx/gtk/private.h diff --git a/include/wx/gtk/private.h b/include/wx/gtk/private.h index d19eed94ea..fa140d1cd3 100644 --- a/include/wx/gtk/private.h +++ b/include/wx/gtk/private.h @@ -34,12 +34,12 @@ extern const gchar *wx_pango_version_check(int major, int minor, int micro); #if wxUSE_UNICODE - #define wxGTK_CONV(s) wxConvUTF8.cWX2MB((s)) + #define wxGTK_CONV(s) s.utf8_str() #define wxGTK_CONV_ENC(s, enc) wxGTK_CONV((s)) #define wxGTK_CONV_FONT(s, font) wxGTK_CONV((s)) #define wxGTK_CONV_SYS(s) wxGTK_CONV((s)) - #define wxGTK_CONV_BACK(s) wxConvUTF8.cMB2WX((s)) + #define wxGTK_CONV_BACK(s) wxString::FromUTF8(s) #define wxGTK_CONV_BACK_ENC(s, enc) wxGTK_CONV_BACK(s) #define wxGTK_CONV_BACK_FONT(s, font) wxGTK_CONV_BACK(s) #define wxGTK_CONV_BACK_SYS(s) wxGTK_CONV_BACK(s) @@ -47,11 +47,11 @@ extern const gchar *wx_pango_version_check(int major, int minor, int micro); #include "wx/font.h" // convert the text between the given encoding and UTF-8 used by wxGTK - extern wxCharBuffer + extern WXDLLIMPEXP_CORE wxCharBuffer wxConvertToGTK(const wxString& s, wxFontEncoding enc = wxFONTENCODING_SYSTEM); - extern wxCharBuffer + extern WXDLLIMPEXP_CORE wxCharBuffer wxConvertFromGTK(const wxString& s, wxFontEncoding enc = wxFONTENCODING_SYSTEM);