GTK 1.0.x compilation fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2174 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 1999-04-15 13:47:16 +00:00
parent 9f15c5febf
commit 7fd43a44d6

View File

@ -1842,7 +1842,7 @@ size_t wxMBConv_file::WC2MB(char *buf, const wchar_t *psz, size_t n) const
// standard gdk conversion // standard gdk conversion
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
#ifdef __WXGTK__ #if defined(__WXGTK__) && (GTK_MINOR_VERSION > 0)
WXDLLEXPORT_DATA(wxMBConv_gdk) wxConv_gdk; WXDLLEXPORT_DATA(wxMBConv_gdk) wxConv_gdk;
#include <gdk/gdk.h> #include <gdk/gdk.h>
@ -1870,7 +1870,7 @@ size_t wxMBConv_gdk::WC2MB(char *buf, const wchar_t *psz, size_t n) const
} }
return len; return len;
} }
#endif #endif // GTK > 1.0
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// UTF-7 // UTF-7