// headers
// ----------------------------------------------------------------------------
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "fontutil.h"
#endif
bool wxTestFontEncoding(const wxNativeEncodingInfo& info)
{
- return info.encoding == wxFont::GetDefaultEncoding() ;
+ // basically we should be able to support every encoding via the OS
+ return true ;
}