IDE: sort comboboxes in version info tab patch from xpete

git-svn-id: trunk@10247 -
This commit is contained in:
vincents 2006-11-27 09:05:53 +00:00
parent e8a6925d65
commit 17d8347bb9

View File

@ -370,9 +370,11 @@ begin
LanguageSelectionComboBox.Items.Assign(MSLanguages);
LanguageSelectionComboBox.ItemIndex :=
MSHexLanguages.IndexOf(Project.VersionInfo.HexLang);
LanguageSelectionComboBox.Sorted := True;
CharacterSetComboBox.Items.Assign(MSCharacterSets);
CharacterSetComboBox.ItemIndex :=
MSHexCharacterSets.IndexOf(Project.VersionInfo.HexCharSet);
CharacterSetComboBox.Sorted := True;
DescriptionEdit.Text := Project.VersionInfo.DescriptionString;
CopyrightEdit.Text := Project.VersionInfo.CopyrightString;
end;