wxEnumProperty: Fixed wrong variable name in Doxygen documentation.

This commit is contained in:
orbitcowboy
2017-03-22 09:55:07 +01:00
committed by Artur Wieczorek
parent 4aed8cd0be
commit f8ea4d61bc

View File

@@ -262,9 +262,9 @@ A very simple example:
// Using wxArrayString // Using wxArrayString
// //
wxArrayString arrDiet; wxArrayString arrDiet;
arr.Add("Herbivore"); arrDiet.Add("Herbivore");
arr.Add("Carnivore"); arrDiet.Add("Carnivore");
arr.Add("Omnivore"); arrDiet.Add("Omnivore");
pg->Append( new wxEnumProperty("Diet", pg->Append( new wxEnumProperty("Diet",
wxPG_LABEL, wxPG_LABEL,
@@ -290,9 +290,9 @@ Here's extended example using values as well:
// Using wxArrayString and wxArrayInt // Using wxArrayString and wxArrayInt
// //
wxArrayString arrDiet; wxArrayString arrDiet;
arr.Add("Herbivore"); arrDiet.Add("Herbivore");
arr.Add("Carnivore"); arrDiet.Add("Carnivore");
arr.Add("Omnivore"); arrDiet.Add("Omnivore");
wxArrayInt arrIds; wxArrayInt arrIds;
arrIds.Add(40); arrIds.Add(40);