Add a few missing ISO 8859 encodings to the "open with charset" list. Why is this list hardcoded??

For the record ISO 8859-12 doesn't exist, and my system won't accept ISO 8859-16.

Originally committed to SVN as r5432.
This commit is contained in:
Niels Martin Hansen 2011-06-16 18:36:33 +00:00
parent d364d28f78
commit 82dacfa295
1 changed files with 3 additions and 0 deletions

View File

@ -1259,7 +1259,10 @@ wxArrayString FrameMain::GetEncodings() {
choices.Add(_T("ISO-8859-7"));
choices.Add(_T("ISO-8859-8"));
choices.Add(_T("ISO-8859-9"));
choices.Add(_T("ISO-8859-10"));
choices.Add(_T("ISO-8859-11"));
choices.Add(_T("ISO-8859-13"));
choices.Add(_T("ISO-8859-14"));
choices.Add(_T("ISO-8859-15"));
choices.Add(_T("WINDOWS-1250"));
choices.Add(_T("WINDOWS-1251"));