]> git.saurik.com Git - wxWidgets.git/commitdiff
added missing export declarations for wxGTK internal functions needed outside of...
authorVáclav Slavík <vslavik@fastmail.fm>
Sat, 11 Aug 2007 12:18:34 +0000 (12:18 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Sat, 11 Aug 2007 12:18:34 +0000 (12:18 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48022 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/utilsgtk.cpp

index e311c5fee2d1adf8146326fb92982b620e01c87c..1f9ea333a74c9427a23cc32259467eb1d19d5c8e 100644 (file)
@@ -187,7 +187,8 @@ wxWindow* wxFindWindowAtPoint(const wxPoint& pt)
 
 #if !wxUSE_UNICODE
 
-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 )
@@ -213,7 +214,8 @@ wxCharBuffer wxConvertToGTK(const wxString& s, wxFontEncoding enc)
     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