diff --git a/src/common/intl.cpp b/src/common/intl.cpp index 44c4df22a8..df38f5d8ee 100644 --- a/src/common/intl.cpp +++ b/src/common/intl.cpp @@ -1897,8 +1897,6 @@ wxString GetDateFormatFromLangInfo(wxLocaleInfo index) /* static */ wxString wxLocale::GetInfo(wxLocaleInfo index, wxLocaleCategory cat) { -// TODO: as of 2014 Android doesn't has complete locale support (use java api) -#if !(defined(__WXQT__) && defined(__ANDROID__)) lconv * const lc = localeconv(); if ( !lc ) return wxString(); @@ -1940,7 +1938,7 @@ wxString wxLocale::GetInfo(wxLocaleInfo index, wxLocaleCategory cat) default: wxFAIL_MSG( "unknown wxLocaleInfo value" ); } -#endif + return wxString(); }