TWebComboBox Items - Names/Values switched?

I used to fill the TWebComboBox with these lines:

 cmbLebensmittelgruppe.Items.Clear;
 cmbLebensmittelgruppe.Items.Add('A=Anfangs- und Babynahrung');
 cmbLebensmittelgruppe.Items.Add('B=Brot und Kleingebäck');

and to retreive the selections name with

 i := cmbLebensmittelgruppe.ItemIndex;
 sLebensmittelgruppe := cmbLebensmittelgruppe.Items.Names[i];

However, since the last update the combo box displays the names (A, B, ...) instead of the values.

Has there been some changes?

We switched it because it felt semantically a better match with the HTML OPTION element attribute name.