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