Readd the number prefixes to the automation log levels in the preferences dialog

Originally committed to SVN as r6677.
This commit is contained in:
Thomas Goyne 2012-04-10 20:40:20 +00:00
parent af0e58f876
commit 7cda44c3f0
1 changed files with 1 additions and 1 deletions

View File

@ -472,7 +472,7 @@ Automation::Automation(wxTreebook *book, Preferences *parent): OptionPage(book,
OptionAdd(general, _("Include path"), "Path/Automation/Include");
OptionAdd(general, _("Auto-load path"), "Path/Automation/Autoload");
const wxString tl_arr[6] = { _("Fatal"), _("Error"), _("Warning"), _("Hint"), _("Debug"), _("Trace") };
const wxString tl_arr[6] = { _("0: Fatal"), _("1: Error"), _("2: Warning"), _("3: Hint"), _("4: Debug"), _("5: Trace") };
wxArrayString tl_choice(6, tl_arr);
OptionChoice(general, _("Trace level"), tl_choice, "Automation/Trace Level");