You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
574 B

  1. === modified file 'src/common/translation.cpp'
  2. --- src/common/translation.cpp 2014-01-26 13:59:40 +0000
  3. +++ src/common/translation.cpp 2014-01-26 15:18:47 +0000
  4. @@ -1611,6 +1611,9 @@
  5. /* static */
  6. const wxString& wxTranslations::GetUntranslatedString(const wxString& str)
  7. {
  8. + // Marco Serantoni - Dirty Patch
  9. + // Awaiting for http://trac.wxwidgets.org/ticket/15908
  10. + if( gs_translationsOwned == false) return str;
  11. wxLocaleUntranslatedStrings& strings = wxThreadInfo.untranslatedStrings;
  12. wxLocaleUntranslatedStrings::iterator i = strings.find(str);