git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48022
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
-wxCharBuffer wxConvertToGTK(const wxString& s, wxFontEncoding enc)
+WXDLLIMPEXP_CORE wxCharBuffer
+wxConvertToGTK(const wxString& s, wxFontEncoding enc)
{
wxWCharBuffer wbuf;
if ( enc == wxFONTENCODING_SYSTEM || enc == wxFONTENCODING_DEFAULT )
{
wxWCharBuffer wbuf;
if ( enc == wxFONTENCODING_SYSTEM || enc == wxFONTENCODING_DEFAULT )
return wxConvUTF8.cWC2MB(wbuf);
}
return wxConvUTF8.cWC2MB(wbuf);
}
-wxCharBuffer wxConvertFromGTK(const wxString& s, wxFontEncoding enc)
+WXDLLIMPEXP_CORE wxCharBuffer
+wxConvertFromGTK(const wxString& s, wxFontEncoding enc)
{
// this conversion should never fail as GTK+ always uses UTF-8 internally
// so there are no complications here
{
// this conversion should never fail as GTK+ always uses UTF-8 internally
// so there are no complications here