Fix #846, patch from pomyk, thanks!

Originally committed to SVN as r3026.
This commit is contained in:
Amar Takhar 2009-06-06 21:05:31 +00:00
parent 6e2240166f
commit 92d5324084
1 changed files with 5 additions and 0 deletions

View File

@ -64,6 +64,11 @@ AegisubLocale::~AegisubLocale() {
void AegisubLocale::Init(int language) {
if (language == -1) language = wxLANGUAGE_ENGLISH;
if (locale) delete locale;
if (!wxLocale::IsAvailable(language)) {
language = wxLANGUAGE_UNKNOWN;
}
curCode = language;
locale = new wxLocale(language);