From d2e072db3ce6e4be78a1e817e8be6d0cf9dd518f Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 29 Sep 2018 16:59:32 +0200 Subject: [PATCH] Don't use unclear ValArrItem typedef in wxPGChoices documentation All the other methods use just "long", so use it in Add() documentation as well instead of the rather cryptic ValArrItem. --- interface/wx/propgrid/property.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/wx/propgrid/property.h b/interface/wx/propgrid/property.h index f106f7cab4..758f9b810a 100644 --- a/interface/wx/propgrid/property.h +++ b/interface/wx/propgrid/property.h @@ -2529,7 +2529,7 @@ public: Values for added choices. If empty, relevant entry indexes are used. Otherwise must have at least the same size as @a labels. */ - void Add( const wxChar** labels, const ValArrItem* values = NULL ); + void Add( const wxChar** labels, const long* values = NULL ); /** Adds to current. Version that works with wxArrayString and wxArrayInt.